HubConnectionContext Konstruktoren
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
HubConnectionContext(ConnectionContext, HubConnectionContextOptions, ILoggerFactory) |
Initialisiert eine neue Instanz der HubConnectionContext-Klasse. |
HubConnectionContext(ConnectionContext, TimeSpan, ILoggerFactory) |
Initialisiert eine neue Instanz der HubConnectionContext-Klasse. |
HubConnectionContext(ConnectionContext, TimeSpan, ILoggerFactory, TimeSpan) |
Initialisiert eine neue Instanz der HubConnectionContext-Klasse. |
HubConnectionContext(ConnectionContext, HubConnectionContextOptions, ILoggerFactory)
- Quelle:
- HubConnectionContext.cs
Initialisiert eine neue Instanz der HubConnectionContext-Klasse.
public:
HubConnectionContext(Microsoft::AspNetCore::Connections::ConnectionContext ^ connectionContext, Microsoft::AspNetCore::SignalR::HubConnectionContextOptions ^ contextOptions, Microsoft::Extensions::Logging::ILoggerFactory ^ loggerFactory);
public HubConnectionContext (Microsoft.AspNetCore.Connections.ConnectionContext connectionContext, Microsoft.AspNetCore.SignalR.HubConnectionContextOptions contextOptions, Microsoft.Extensions.Logging.ILoggerFactory loggerFactory);
new Microsoft.AspNetCore.SignalR.HubConnectionContext : Microsoft.AspNetCore.Connections.ConnectionContext * Microsoft.AspNetCore.SignalR.HubConnectionContextOptions * Microsoft.Extensions.Logging.ILoggerFactory -> Microsoft.AspNetCore.SignalR.HubConnectionContext
Public Sub New (connectionContext As ConnectionContext, contextOptions As HubConnectionContextOptions, loggerFactory As ILoggerFactory)
Parameter
- connectionContext
- ConnectionContext
Der zugrundeliegende ConnectionContext.
- contextOptions
- HubConnectionContextOptions
Die Optionen zum Konfigurieren von HubConnectionContext.
- loggerFactory
- ILoggerFactory
Die Protokollierungsfactory.
Gilt für:
HubConnectionContext(ConnectionContext, TimeSpan, ILoggerFactory)
- Quelle:
- HubConnectionContext.cs
- Quelle:
- HubConnectionContext.cs
Initialisiert eine neue Instanz der HubConnectionContext-Klasse.
public:
HubConnectionContext(Microsoft::AspNetCore::Connections::ConnectionContext ^ connectionContext, TimeSpan keepAliveInterval, Microsoft::Extensions::Logging::ILoggerFactory ^ loggerFactory);
public HubConnectionContext (Microsoft.AspNetCore.Connections.ConnectionContext connectionContext, TimeSpan keepAliveInterval, Microsoft.Extensions.Logging.ILoggerFactory loggerFactory);
new Microsoft.AspNetCore.SignalR.HubConnectionContext : Microsoft.AspNetCore.Connections.ConnectionContext * TimeSpan * Microsoft.Extensions.Logging.ILoggerFactory -> Microsoft.AspNetCore.SignalR.HubConnectionContext
Public Sub New (connectionContext As ConnectionContext, keepAliveInterval As TimeSpan, loggerFactory As ILoggerFactory)
Parameter
- connectionContext
- ConnectionContext
Der zugrundeliegende ConnectionContext.
- keepAliveInterval
- TimeSpan
Das Keep-Alive-Intervall. Wenn in diesem Intervall keine Nachrichten vom Server gesendet werden, wird eine Ping-Nachricht gesendet.
- loggerFactory
- ILoggerFactory
Die Protokollierungsfactory.
Gilt für:
HubConnectionContext(ConnectionContext, TimeSpan, ILoggerFactory, TimeSpan)
- Quelle:
- HubConnectionContext.cs
Initialisiert eine neue Instanz der HubConnectionContext-Klasse.
public:
HubConnectionContext(Microsoft::AspNetCore::Connections::ConnectionContext ^ connectionContext, TimeSpan keepAliveInterval, Microsoft::Extensions::Logging::ILoggerFactory ^ loggerFactory, TimeSpan clientTimeoutInterval);
public HubConnectionContext (Microsoft.AspNetCore.Connections.ConnectionContext connectionContext, TimeSpan keepAliveInterval, Microsoft.Extensions.Logging.ILoggerFactory loggerFactory, TimeSpan clientTimeoutInterval);
new Microsoft.AspNetCore.SignalR.HubConnectionContext : Microsoft.AspNetCore.Connections.ConnectionContext * TimeSpan * Microsoft.Extensions.Logging.ILoggerFactory * TimeSpan -> Microsoft.AspNetCore.SignalR.HubConnectionContext
Public Sub New (connectionContext As ConnectionContext, keepAliveInterval As TimeSpan, loggerFactory As ILoggerFactory, clientTimeoutInterval As TimeSpan)
Parameter
- connectionContext
- ConnectionContext
Der zugrundeliegende ConnectionContext.
- keepAliveInterval
- TimeSpan
Das Keep-Alive-Intervall. Wenn in diesem Intervall keine Nachrichten vom Server gesendet werden, wird eine Ping-Nachricht gesendet.
- loggerFactory
- ILoggerFactory
Die Protokollierungsfactory.
- clientTimeoutInterval
- TimeSpan
Für Clients, von denen wir in diesem Intervall noch nichts gehört haben, wird davon ausgegangen, dass die Verbindung getrennt wurde.