HubPipelineModule.OnAfterIncoming Method

.NET Framework 4.5

This method is called after the incoming components of any modules added later to the IHubPipeline and the server-side hub method have completed execution.

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

Syntax

'Declaration
Protected Overridable Function OnAfterIncoming ( _
    result As Object, _
    context As IHubIncomingInvokerContext _
) As Object
'Usage
Dim result As Object 
Dim context As IHubIncomingInvokerContext 
Dim returnValue As Object 

returnValue = Me.OnAfterIncoming(result, _
    context)
protected virtual Object OnAfterIncoming(
    Object result,
    IHubIncomingInvokerContext context
)
protected:
virtual Object^ OnAfterIncoming(
    Object^ result, 
    IHubIncomingInvokerContext^ context
)
abstract OnAfterIncoming : 
        result:Object * 
        context:IHubIncomingInvokerContext -> Object  
override OnAfterIncoming : 
        result:Object * 
        context:IHubIncomingInvokerContext -> Object
protected function OnAfterIncoming(
    result : Object, 
    context : IHubIncomingInvokerContext
) : Object

Parameters

  • result
    Type: System.Object
    The return value of the server-side hub method

Return Value

Type: System.Object
The possibly new or updated return value of the server-side hub method

See Also

Reference

HubPipelineModule Class

Microsoft.AspNet.SignalR.Hubs Namespace