Microsoft.AspNetCore.SignalR.Hubs.HubPipelineModule.OnAfterDisconnect C# (CSharp) Method

OnAfterDisconnect() protected method

This method is called after the disconnect components of any modules added later to the IHubPipeline are executed and after IHub.OnDisconnected(bool) is executed, if at all.
protected OnAfterDisconnect ( IHub hub, bool stopCalled ) : void
hub IHub The hub the client has disconnected from.
stopCalled bool /// true, if stop was called on the client closing the connection gracefully; /// false, if the client timed out. Timeouts can be caused by clients reconnecting to another SignalR server in scaleout. ///
return void
        protected virtual void OnAfterDisconnect(IHub hub, bool stopCalled)
        {

        }