HttpClientExtensions.PutAsXmlAsync<T> Method (, String, T, CancellationToken)

Sends a PUT request as an asynchronous operation, with a specified value serialized as XML. Includes a cancellation token to cancel the request.

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

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function PutAsXmlAsync(Of T) ( _
    client As HttpClient, _
    requestUri As String, _
    value As T, _
    cancellationToken As CancellationToken _
) As Task(Of HttpResponseMessage)
'Usage
Dim client As HttpClient 
Dim requestUri As String 
Dim value As T
Dim cancellationToken As CancellationToken 
Dim returnValue As Task(Of HttpResponseMessage)

returnValue = client.PutAsXmlAsync(requestUri, _
    value, cancellationToken)
public static Task<HttpResponseMessage> PutAsXmlAsync<T>(
    this HttpClient client,
    string requestUri,
    T value,
    CancellationToken cancellationToken
)
[ExtensionAttribute]
public:
generic<typename T>
static Task<HttpResponseMessage^>^ PutAsXmlAsync(
    HttpClient^ client, 
    String^ requestUri, 
    T value, 
    CancellationToken cancellationToken
)
static member PutAsXmlAsync : 
        client:HttpClient * 
        requestUri:string * 
        value:'T * 
        cancellationToken:CancellationToken -> Task<HttpResponseMessage> 
JScript does not support generic types and methods.

Type Parameters

  • T
    The type of object to serialize.

Parameters

  • client
    Type: HttpClient

    The client used to make the request.

  • value
    Type: T

    The value to write into the entity body of the request.

Return Value

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

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type HttpClient. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.108) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.108).

See Also

Reference

HttpClientExtensions Class

PutAsXmlAsync Overload

System.Net.Http Namespace