HttpClient.PutAsync Method (String, HttpContent) (System.Net.Http)

Created: 2015-11-10 15:01 Updated: 2015-11-10 15:01 Source: https://msdn.microsoft.com/en-us/library/hh138124(v=vs.118).aspx Notebook: All Tech/Frontend Development

HttpClient.PutAsync Method (String, HttpContent)

Sends a PUT request to the specified Uri as an asynchronous operation.

Namespace:  System.Net.Http
Assembly:  System.Net.Http (in System.Net.Http.dll)

public Task<HttpResponseMessage> PutAsync(
	string requestUri,
	HttpContent content
)

Parameters

requestUri
Type: System.String
The Uri the request is sent to.
content
Type: System.Net.Http.HttpContent
The HTTP request content sent to the server.

Return Value

Type: System.Threading.Tasks.Task<HttpResponseMessage>
The task object representing the asynchronous operation.

This operation will not block. The returned task object will complete after the whole response (including content) is read.

For a complete example of using the HttpClient class, see Calling a Web API From a .NET Client

IN THIS ARTICLE
  • Syntax
  • Remarks
  • See Also

View static HTML