다음을 통해 공유


LegacyStreamingConnection 생성자

정의

오버로드

LegacyStreamingConnection(WebSocket, ILogger, DisconnectedEventHandler)

웹 소켓을 사용하는 클래스의 LegacyStreamingConnection 새 인스턴스를 초기화합니다.

LegacyStreamingConnection(String, ILogger, DisconnectedEventHandler)

명명된 파이프를 사용하는 클래스의 LegacyStreamingConnection 새 인스턴스를 초기화합니다.

LegacyStreamingConnection(WebSocket, ILogger, DisconnectedEventHandler)

웹 소켓을 사용하는 클래스의 LegacyStreamingConnection 새 인스턴스를 초기화합니다.

public LegacyStreamingConnection (System.Net.WebSockets.WebSocket socket, Microsoft.Extensions.Logging.ILogger logger, Microsoft.Bot.Streaming.Transport.DisconnectedEventHandler onServerDisconnect = default);
new Microsoft.Bot.Connector.Streaming.Application.LegacyStreamingConnection : System.Net.WebSockets.WebSocket * Microsoft.Extensions.Logging.ILogger * Microsoft.Bot.Streaming.Transport.DisconnectedEventHandler -> Microsoft.Bot.Connector.Streaming.Application.LegacyStreamingConnection
Public Sub New (socket As WebSocket, logger As ILogger, Optional onServerDisconnect As DisconnectedEventHandler = Nothing)

매개 변수

socket
WebSocket

WebSocket 레거시 스트리밍 연결에 사용할 인스턴스입니다.

logger
ILogger

추적 및 디버깅 정보를 위한 로거 구현입니다.

onServerDisconnect
DisconnectedEventHandler

전송 서버의 연결이 끊어질 때 실행할 추가 처리 코드입니다.

적용 대상

LegacyStreamingConnection(String, ILogger, DisconnectedEventHandler)

명명된 파이프를 사용하는 클래스의 LegacyStreamingConnection 새 인스턴스를 초기화합니다.

public LegacyStreamingConnection (string pipeName, Microsoft.Extensions.Logging.ILogger logger, Microsoft.Bot.Streaming.Transport.DisconnectedEventHandler onServerDisconnect = default);
new Microsoft.Bot.Connector.Streaming.Application.LegacyStreamingConnection : string * Microsoft.Extensions.Logging.ILogger * Microsoft.Bot.Streaming.Transport.DisconnectedEventHandler -> Microsoft.Bot.Connector.Streaming.Application.LegacyStreamingConnection
Public Sub New (pipeName As String, logger As ILogger, Optional onServerDisconnect As DisconnectedEventHandler = Nothing)

매개 변수

pipeName
String

명명된 파이프의 이름입니다.

logger
ILogger

추적 및 디버깅 정보를 위한 로거 구현입니다.

onServerDisconnect
DisconnectedEventHandler

전송 서버의 연결이 끊어질 때 실행할 추가 처리 코드입니다.

적용 대상