다음을 통해 공유


RequestManager 생성자

정의

오버로드

RequestManager()

RequestManager 클래스의 새 인스턴스를 초기화합니다.

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

RequestManager 클래스의 새 인스턴스를 초기화합니다.

RequestManager()

Source:
RequestManager.cs

RequestManager 클래스의 새 인스턴스를 초기화합니다.

public RequestManager ();
Public Sub New ()

적용 대상

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

Source:
RequestManager.cs

RequestManager 클래스의 새 인스턴스를 초기화합니다.

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

매개 변수

responseTasks
ConcurrentDictionary<Guid,TaskCompletionSource<ReceiveResponse>>

관리할 작업 집합입니다.

적용 대상