HubPipelineModule.OnAfterOutgoing Method
.NET Framework 4
This method is called after the outgoing components of any modules added later to the IHubPipeline are executed. This does not mean that all the clients have received the hub method invocation, but it does indicate a hub invocation message has successfully been published to a message bus.
Namespace: Microsoft.AspNet.SignalR.Hubs
Assembly: Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)
Syntax
'Declaration
Protected Overridable Sub OnAfterOutgoing ( _
context As IHubOutgoingInvokerContext _
)
'Usage
Dim context As IHubOutgoingInvokerContext
Me.OnAfterOutgoing(context)
protected virtual void OnAfterOutgoing(
IHubOutgoingInvokerContext context
)
protected:
virtual void OnAfterOutgoing(
IHubOutgoingInvokerContext^ context
)
abstract OnAfterOutgoing :
context:IHubOutgoingInvokerContext -> unit
override OnAfterOutgoing :
context:IHubOutgoingInvokerContext -> unit
protected function OnAfterOutgoing(
context : IHubOutgoingInvokerContext
)
Parameters
- context
Type: Microsoft.AspNet.SignalR.Hubs.IHubOutgoingInvokerContext
A description of the client-side hub method invocation.