OutgoingMessageBody Constructors

Definition

Overloads

OutgoingMessageBody(IEnumerable<IPooledBuffer>)

Initializes a new instance of the OutgoingMessageBody class. Creates OutgoingMessageBody with list of pooled Buffers

OutgoingMessageBody(IEnumerable<ArraySegment<Byte>>)

Initializes a new instance of the OutgoingMessageBody class. Creates OutgoingMessageBody with list of segments.

OutgoingMessageBody(IEnumerable<IPooledBuffer>)

Initializes a new instance of the OutgoingMessageBody class. Creates OutgoingMessageBody with list of pooled Buffers

public OutgoingMessageBody (System.Collections.Generic.IEnumerable<Microsoft.ServiceFabric.Services.Remoting.V2.Messaging.IPooledBuffer> outgoingPooledBodyBuffers);
new Microsoft.ServiceFabric.Services.Remoting.V2.Messaging.OutgoingMessageBody : seq<Microsoft.ServiceFabric.Services.Remoting.V2.Messaging.IPooledBuffer> -> Microsoft.ServiceFabric.Services.Remoting.V2.Messaging.OutgoingMessageBody
Public Sub New (outgoingPooledBodyBuffers As IEnumerable(Of IPooledBuffer))

Parameters

outgoingPooledBodyBuffers
IEnumerable<IPooledBuffer>

List of Pooled Buffers

Applies to

OutgoingMessageBody(IEnumerable<ArraySegment<Byte>>)

Initializes a new instance of the OutgoingMessageBody class. Creates OutgoingMessageBody with list of segments.

public OutgoingMessageBody (System.Collections.Generic.IEnumerable<ArraySegment<byte>> outgoingBodyBuffers);
new Microsoft.ServiceFabric.Services.Remoting.V2.Messaging.OutgoingMessageBody : seq<ArraySegment<byte>> -> Microsoft.ServiceFabric.Services.Remoting.V2.Messaging.OutgoingMessageBody
Public Sub New (outgoingBodyBuffers As IEnumerable(Of ArraySegment(Of Byte)))

Parameters

outgoingBodyBuffers
IEnumerable<ArraySegment<Byte>>

List of ArraySegment

Applies to