Partager via


LegacyStreamingConnection Constructeurs

Définition

Surcharges

LegacyStreamingConnection(WebSocket, ILogger, DisconnectedEventHandler)

Initialise une nouvelle instance de la LegacyStreamingConnection classe qui utilise des sockets web.

LegacyStreamingConnection(String, ILogger, DisconnectedEventHandler)

Initialise une nouvelle instance de la LegacyStreamingConnection classe qui utilise des canaux nommés.

LegacyStreamingConnection(WebSocket, ILogger, DisconnectedEventHandler)

Initialise une nouvelle instance de la LegacyStreamingConnection classe qui utilise des sockets web.

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)

Paramètres

socket
WebSocket

Instance WebSocket à utiliser pour la connexion de streaming héritée.

logger
ILogger

Implémentation de l’enregistreur d’événements pour le suivi et le débogage des informations.

onServerDisconnect
DisconnectedEventHandler

Code de gestion supplémentaire à exécuter lorsque le serveur de transport est déconnecté.

S’applique à

LegacyStreamingConnection(String, ILogger, DisconnectedEventHandler)

Initialise une nouvelle instance de la LegacyStreamingConnection classe qui utilise des canaux nommés.

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)

Paramètres

pipeName
String

Nom du canal nommé.

logger
ILogger

Implémentation de l’enregistreur d’événements pour le suivi et le débogage des informations.

onServerDisconnect
DisconnectedEventHandler

Code de gestion supplémentaire à exécuter lorsque le serveur de transport est déconnecté.

S’applique à