IHubPipelineModule::BuildConnect Method

.NET Framework 4.5

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

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

Func<IHub^, Task^>^ BuildConnect(
	Func<IHub^, Task^>^ connect
)

Parameters

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

Return Value

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