IHubCallerConnectionContext Interface
.NET Framework 4.5
Encapsulates all information about an individual SignalR connection for an IHub.
Namespace: Microsoft.AspNet.SignalR.Hubs
Assembly: Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)
Syntax
'Declaration
Public Interface IHubCallerConnectionContext _
Inherits IHubConnectionContext
'Usage
Dim instance As IHubCallerConnectionContext
public interface IHubCallerConnectionContext : IHubConnectionContext
public interface class IHubCallerConnectionContext : IHubConnectionContext
type IHubCallerConnectionContext =
interface
interface IHubConnectionContext
end
public interface IHubCallerConnectionContext extends IHubConnectionContext
The IHubCallerConnectionContext type exposes the following members.
Properties
Name | Description | |
---|---|---|
All | Gets or sets all the connected clients. (Inherited from IHubConnectionContext.) | |
Caller | ||
Others |
Top
Methods
Name | Description | |
---|---|---|
AllExcept | Returns a dynamic representation of all clients except the calling client ones specified. (Inherited from IHubConnectionContext.) | |
Client | Returns a dynamic representation of the connection with the specified connection ID. (Inherited from IHubConnectionContext.) | |
Clients | (Inherited from IHubConnectionContext.) | |
Group | Returns a dynamic representation of the specified group. (Inherited from IHubConnectionContext.) | |
Groups | (Inherited from IHubConnectionContext.) | |
OthersInGroup | ||
OthersInGroups | ||
User | (Inherited from IHubConnectionContext.) |
Top