HubPipelineModule.OnAfterReconnect Method
.NET Framework 4
This method is called after the reconnect components of any modules added later to the IHubPipeline are executed and after OnReconnected() is executed, if at all.
Namespace: Microsoft.AspNet.SignalR.Hubs
Assembly: Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)
Syntax
'Declaration
Protected Overridable Sub OnAfterReconnect ( _
hub As IHub _
)
'Usage
Dim hub As IHub
Me.OnAfterReconnect(hub)
protected virtual void OnAfterReconnect(
IHub hub
)
protected:
virtual void OnAfterReconnect(
IHub^ hub
)
abstract OnAfterReconnect :
hub:IHub -> unit
override OnAfterReconnect :
hub:IHub -> unit
protected function OnAfterReconnect(
hub : IHub
)
Parameters
- hub
Type: Microsoft.AspNet.SignalR.Hubs.IHub
The hub the client has reconnected to.