OutgoingMessageBody Constructors
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.
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
Azure SDK for .NET