MethodInvocationSendTResponse Method (IRelationsWithProxy, 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 IRelationsWithProxy relations,
	string relationName,
	HttpMethod method,
	HttpContent dataToSend,
	string acceptType
)
where TResponse : class

Parameters

relations
Type: DocuWare.Services.Http.ClientIRelationsWithProxy
The relations.
relationName
Type: SystemString
Name of the relation.
method
Type: System.Net.HttpHttpMethod
The method.
dataToSend
Type: System.Net.HttpHttpContent
The data 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 IRelationsWithProxy. 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