IConnectionGroupManager Interface
.NET Framework 4
Manages groups for a connection and allows sending messages to the group.
Namespace: Microsoft.AspNet.SignalR
Assembly: Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)
Syntax
'Declaration
Public Interface IConnectionGroupManager _
Inherits IGroupManager
'Usage
Dim instance As IConnectionGroupManager
public interface IConnectionGroupManager : IGroupManager
public interface class IConnectionGroupManager : IGroupManager
type IConnectionGroupManager =
interface
interface IGroupManager
end
public interface IConnectionGroupManager extends IGroupManager
The IConnectionGroupManager type exposes the following members.
Methods
Name | Description | |
---|---|---|
Add | Adds a connection to the specified group. (Inherited from IGroupManager.) | |
Remove | Removes a connection from the specified group. (Inherited from IGroupManager.) | |
Send | Sends a value to the specified group. |
Top