IServiceRemotingContract.RequestResponseAsync Method

Definition

Sends a message to the client and gets the response.

[System.ServiceModel.FaultContract(typeof(Microsoft.ServiceFabric.Services.Remoting.V1.RemoteExceptionInformation))]
[System.ServiceModel.OperationContract]
public System.Threading.Tasks.Task<byte[]> RequestResponseAsync (Microsoft.ServiceFabric.Services.Remoting.V1.ServiceRemotingMessageHeaders messageHeaders, byte[] requestBody);
[<System.ServiceModel.FaultContract(typeof(Microsoft.ServiceFabric.Services.Remoting.V1.RemoteExceptionInformation))>]
[<System.ServiceModel.OperationContract>]
abstract member RequestResponseAsync : Microsoft.ServiceFabric.Services.Remoting.V1.ServiceRemotingMessageHeaders * byte[] -> System.Threading.Tasks.Task<byte[]>
Public Function RequestResponseAsync (messageHeaders As ServiceRemotingMessageHeaders, requestBody As Byte()) As Task(Of Byte())

Parameters

messageHeaders
Microsoft.ServiceFabric.Services.Remoting.V1.ServiceRemotingMessageHeaders

Message Headers contains the information needed to deserialize request and to dispatch message to the service.

requestBody
Byte[]

Message Body contains a request in a serialized form.

Returns

Task<Byte[]>

Response Body is a serialized response received by the client.

Attributes

Applies to