IServiceRemotingCallbackContract.SendOneWay Method

Definition

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

Applies to