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

OnBeforeReconnect() protected method

This method is called before the reconnect components of any modules added later to the IHubPipeline are executed. If this returns false, then those later-added modules and the IHub.OnReconnected method will not be run.
protected OnBeforeReconnect ( IHub hub ) : bool
hub IHub The hub the client has reconnected to.
return bool
        protected virtual bool OnBeforeReconnect(IHub hub)
        {
            return true;
        }