IServiceRemotingContract.RequestResponseAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sends a message to the client and gets the response.
[System.ServiceModel.FaultContract(typeof(Microsoft.ServiceFabric.Services.Remoting.V2.RemoteException))]
[System.ServiceModel.OperationContract]
public System.Threading.Tasks.Task<Microsoft.ServiceFabric.Services.Remoting.V2.Wcf.ResponseMessage> RequestResponseAsync (ArraySegment<byte> messageHeaders, System.Collections.Generic.IEnumerable<ArraySegment<byte>> requestBody);
[<System.ServiceModel.FaultContract(typeof(Microsoft.ServiceFabric.Services.Remoting.V2.RemoteException))>]
[<System.ServiceModel.OperationContract>]
abstract member RequestResponseAsync : ArraySegment<byte> * seq<ArraySegment<byte>> -> System.Threading.Tasks.Task<Microsoft.ServiceFabric.Services.Remoting.V2.Wcf.ResponseMessage>
Public Function RequestResponseAsync (messageHeaders As ArraySegment(Of Byte), requestBody As IEnumerable(Of ArraySegment(Of Byte))) As Task(Of ResponseMessage)
Parameters
- messageHeaders
- ArraySegment<Byte>
Message Headers contains the information needed to deserialize request and to dispatch message to the service.
- requestBody
- IEnumerable<ArraySegment<Byte>>
Message Body contains a request in a serialized form.
Returns
Response Body is a serialized response recived by the client
- Attributes
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for .NET