Click or drag to resize

RecordOperationsHubTOnDisconnected Method

Called when a connection disconnects from this hub gracefully or due to a timeout.

Namespace: GSF.Web.Hubs
Assembly: GSF.Web (in GSF.Web.dll) Version: 2.4.181-beta
Syntax
public override Task OnDisconnected(
	bool stopCalled
)
View Source

Parameters

stopCalled  Boolean
true if stop was called on the client closing the connection gracefully; otherwise, false, if the connection has been lost for longer than the DisconnectTimeout. Timeouts can be caused by clients reconnecting to another SignalR server in scale-out.

Return Value

Task
A Task

Implements

IHub.OnDisconnected(Boolean)
See Also