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