IHubManager Interface
.NET Framework 4
Describes a hub manager - main point in the whole hub and method lookup process.
Namespace: Microsoft.AspNet.SignalR.Hubs
Assembly: Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)
Syntax
'Declaration
Public Interface IHubManager
'Usage
Dim instance As IHubManager
public interface IHubManager
public interface class IHubManager
type IHubManager = interface end
public interface IHubManager
The IHubManager type exposes the following members.
Methods
Name | Description | |
---|---|---|
GetHub | Retrieves a single hub descriptor. | |
GetHubMethod | Retrieves a method with a given name on a given hub. | |
GetHubMethods | Gets all methods available to call on a given hub. | |
GetHubs | Retrieves all available hubs matching the given predicate. | |
ResolveHub | Resolves a given hub name to a concrete object. | |
ResolveHubs | Resolves all available hubs to their concrete objects. |
Top
Extension Methods
Name | Description | |
---|---|---|
EnsureHub | (Defined by HubManagerExtensions.) | |
GetHubMethods | (Defined by HubManagerExtensions.) | |
GetHubs | (Defined by HubManagerExtensions.) |
Top