Κοινή χρήση μέσω


RequestManager Constructors

Definition

Overloads

RequestManager()

Initializes a new instance of the RequestManager class.

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

Initializes a new instance of the RequestManager class.

RequestManager()

Source:
RequestManager.cs

Initializes a new instance of the RequestManager class.

public RequestManager ();
Public Sub New ()

Applies to

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

Source:
RequestManager.cs

Initializes a new instance of the RequestManager class.

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>>

A set of tasks to manage.

Applies to