HubPipelineModule::BuildReconnect Method

.NET Framework 4.5

Wraps a function that is called when a client reconnects to the HubDispatcher for each IHub the client connects to. By default, this results in the IHub 's OnReconnected method being invoked.

Namespace:  Microsoft.AspNet.SignalR.Hubs
Assembly:  Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)

public:
virtual Func<IHub^, Task^>^ BuildReconnect(
	Func<IHub^, Task^>^ reconnect
)

Parameters

reconnect
Type: System::Func<IHub, Task>
A function to be called when a client reconnects to a hub.

Return Value

Type: System::Func<IHub, Task>
A wrapped function to be called when a client reconnects to a hub.

Implements

IHubPipelineModule::BuildReconnect(Func<IHub, Task>)
Show: