IHubPipelineModule::BuildRejoiningGroups Method
.NET Framework 4.5 Namespace:
Microsoft.AspNet.SignalR.Hubs
Assembly: Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)
A wrapped function that determines which groups the client should be allowed to rejoin.
Wraps a function that determines which of the groups belonging to the hub described by the HubDescriptor the client should be allowed to rejoin. By default, clients that are reconnecting to the server will be removed from all groups they may have previously been a member of, because untrusted clients may claim to be a member of groups they were never authorized to join.
Assembly: Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)
Func<HubDescriptor^, IRequest^, IList<String^>^, IList<String^>^>^ BuildRejoiningGroups( Func<HubDescriptor^, IRequest^, IList<String^>^, IList<String^>^>^ rejoiningGroups )
Parameters
- rejoiningGroups
- Type: System::Func<HubDescriptor, IRequest, IList<String>, IList<String>>
A function that determines which groups the client should be allowed to rejoin.
Return Value
Type: System::Func<HubDescriptor, IRequest, IList<String>, IList<String>>A wrapped function that determines which groups the client should be allowed to rejoin.
Show: