|
HubClientOperationsBaseTTryGetHubClient Method
|
Attempts to get hub client for SignalR session with specified connectionID.
Namespace: GSF.Web.HubsAssembly: GSF.Web (in GSF.Web.dll) Version: 2.4.207-beta
Syntax public static bool TryGetHubClient(
string connectionID,
out T client
)
static member TryGetHubClient :
connectionID : string *
client : 'T byref -> bool
GSF.Web.Hubs.HubClientOperationsBase.TryGetHubClient = function(connectionID, client);
View SourceParameters
- connectionID String
- SignalR session ID to attempt to find.
- client T
- Associated client, if found.
Return Value
Booleantrue if session was found; otherwise,
false.
See Also