IHubPipeline::AddModule Method
Visual Studio 2010
.NET Framework 4 Namespace:
Microsoft.AspNet.SignalR.Hubs
Assembly: Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)
The IHubPipeline itself with the newly added module allowing AddModule(IHubPipelineModule) calls to be chained. This method mutates the pipeline it is invoked on so it is not necessary to store its result.
Adds an IHubPipelineModule to the hub pipeline. Modules added to the pipeline first will wrap modules that are added to the pipeline later. All modules must be added to the pipeline before any methods on the IHubPipelineInvoker are invoked.
Assembly: Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)
Parameters
- pipelineModule
- Type: Microsoft.AspNet.SignalR.Hubs::IHubPipelineModule
A module that may intercept and customize various stages of hub processing such as connecting, reconnecting, disconnecting, invoking server-side hub methods, invoking client-side hub methods, authorizing hub clients and rejoining hub groups.
Return Value
Type: Microsoft.AspNet.SignalR.Hubs::IHubPipelineThe IHubPipeline itself with the newly added module allowing AddModule(IHubPipelineModule) calls to be chained. This method mutates the pipeline it is invoked on so it is not necessary to store its result.
Show: