MethodInvocationSendTResponse Method (HttpClient, String, HttpMethod, HttpContent, String)DocuWare Platform .NET API
Sends a message to the specified HTTP client.

Namespace: DocuWare.Services.Http.Client
Assembly: DocuWare.RestClient (in DocuWare.RestClient.dll) Version: Version 6.6
Syntax

C#
public static Task<DeserializedHttpResponse<TResponse>> Send<TResponse>(
	this HttpClient httpClient,
	string uri,
	HttpMethod method,
	HttpContent dataToSend,
	string acceptType
)
where TResponse : class

Parameters

httpClient
Type: System.Net.HttpHttpClient
The HTTP client.
uri
Type: SystemString
The URI.
method
Type: System.Net.HttpHttpMethod
The method.
dataToSend
Type: System.Net.HttpHttpContent
The content to send.
acceptType
Type: SystemString
Type of the accept.

Type Parameters

TResponse
The type of the response.

Return Value

Type: TaskDeserializedHttpResponseTResponse
A task executing the request and returning the response.

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 Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also

Reference