HttpClientExtensions.PostAsync<T> Method (HttpClient, String, T, MediaTypeFormatter, String, CancellationToken)

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

Syntax

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

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

Type Parameters

  • T

Parameters

  • client
    Type: HttpClient
  • value
    Type: T

Return Value

Type: System.Threading.Tasks.Task<HttpResponseMessage>

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.118) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.118).

See Also

Reference

HttpClientExtensions Class

PostAsync Overload

System.Net.Http Namespace