Share via


PayloadStreamAssembler Constructors

Definition

Overloads

PayloadStreamAssembler(IStreamManager, Guid)

Initializes a new instance of the PayloadStreamAssembler class.

PayloadStreamAssembler(IStreamManager, Guid, String, Nullable<Int32>)

Initializes a new instance of the PayloadStreamAssembler class.

PayloadStreamAssembler(IStreamManager, Guid)

Initializes a new instance of the PayloadStreamAssembler class.

public PayloadStreamAssembler (Microsoft.Bot.Streaming.Payloads.IStreamManager streamManager, Guid id);
new Microsoft.Bot.Streaming.Payloads.PayloadStreamAssembler : Microsoft.Bot.Streaming.Payloads.IStreamManager * Guid -> Microsoft.Bot.Streaming.Payloads.PayloadStreamAssembler
Public Sub New (streamManager As IStreamManager, id As Guid)

Parameters

streamManager
IStreamManager

The IStreamManager managing the stream being assembled.

id
Guid

The ID of this instance.

Applies to

PayloadStreamAssembler(IStreamManager, Guid, String, Nullable<Int32>)

Initializes a new instance of the PayloadStreamAssembler class.

public PayloadStreamAssembler (Microsoft.Bot.Streaming.Payloads.IStreamManager streamManager, Guid id, string type, int? length);
new Microsoft.Bot.Streaming.Payloads.PayloadStreamAssembler : Microsoft.Bot.Streaming.Payloads.IStreamManager * Guid * string * Nullable<int> -> Microsoft.Bot.Streaming.Payloads.PayloadStreamAssembler
Public Sub New (streamManager As IStreamManager, id As Guid, type As String, length As Nullable(Of Integer))

Parameters

streamManager
IStreamManager

The IStreamManager managing the stream being assembled.

id
Guid

The ID of this instance.

type
String

The type of the content contained within the stream.

length
Nullable<Int32>

The length of the content contained within the stream.

Applies to