IServiceRemotingCallbackContract.SendOneWay 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 one way message to the client.
[System.ServiceModel.OperationContract(IsOneWay=true)]
public void SendOneWay(ArraySegment<byte> messageHeaders, System.Collections.Generic.IEnumerable<ArraySegment<byte>> requestBody);
[<System.ServiceModel.OperationContract(IsOneWay=true)>]
abstract member SendOneWay : ArraySegment<byte> * seq<ArraySegment<byte>> -> unit
Public Sub SendOneWay (messageHeaders As ArraySegment(Of Byte), requestBody As IEnumerable(Of ArraySegment(Of Byte)))
Parameters
- messageHeaders
- ArraySegment<Byte>
Message Headers contains the information needed to deserialize request and to dispatch message to the client.
- requestBody
- IEnumerable<ArraySegment<Byte>>
Message Body contains a request in a serialized form.
- Attributes