Delen via


RequestManager Constructors

Definitie

Overloads

RequestManager()

Initialiseert een nieuw exemplaar van de RequestManager klasse.

RequestManager(ConcurrentDictionary<Guid,TaskCompletionSource<ReceiveResponse>>)

Initialiseert een nieuw exemplaar van de RequestManager klasse.

RequestManager()

Bron:
RequestManager.cs

Initialiseert een nieuw exemplaar van de RequestManager klasse.

public RequestManager();
Public Sub New ()

Van toepassing op

RequestManager(ConcurrentDictionary<Guid,TaskCompletionSource<ReceiveResponse>>)

Bron:
RequestManager.cs

Initialiseert een nieuw exemplaar van de RequestManager klasse.

public RequestManager(System.Collections.Concurrent.ConcurrentDictionary<Guid,System.Threading.Tasks.TaskCompletionSource<Microsoft.Bot.Streaming.ReceiveResponse>> responseTasks);
new Microsoft.Bot.Streaming.Payloads.RequestManager : System.Collections.Concurrent.ConcurrentDictionary<Guid, System.Threading.Tasks.TaskCompletionSource<Microsoft.Bot.Streaming.ReceiveResponse>> -> Microsoft.Bot.Streaming.Payloads.RequestManager
Public Sub New (responseTasks As ConcurrentDictionary(Of Guid, TaskCompletionSource(Of ReceiveResponse)))

Parameters

responseTasks
ConcurrentDictionary<Guid,TaskCompletionSource<ReceiveResponse>>

Een set taken die moeten worden beheerd.

Van toepassing op