IHubIncomingInvokerContext Interface
.NET Framework 4
A description of a server-side hub method invocation originating from a client.
Namespace: Microsoft.AspNet.SignalR.Hubs
Assembly: Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)
Syntax
'Declaration
Public Interface IHubIncomingInvokerContext
'Usage
Dim instance As IHubIncomingInvokerContext
public interface IHubIncomingInvokerContext
public interface class IHubIncomingInvokerContext
type IHubIncomingInvokerContext = interface end
public interface IHubIncomingInvokerContext
The IHubIncomingInvokerContext type exposes the following members.
Properties
Name | Description | |
---|---|---|
Args | The arguments to be passed to the invoked method. | |
Hub | A hub instance that contains the invoked method as a member. | |
MethodDescriptor | A description of the method being invoked by the client. | |
StateTracker | A key-value store representing the hub state on the client at the time of the invocation. |
Top