Share via


HubConnectionContext.OthersInGroups Method

.NET Framework 4.5

Returns a dynamic representation of all clients in the specified groups except the calling client.

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

Syntax

'Declaration
Public Function OthersInGroups ( _
    groupNames As IList(Of String) _
) As Object
'Usage
Dim instance As HubConnectionContext 
Dim groupNames As IList(Of String)
Dim returnValue As Object 

returnValue = instance.OthersInGroups(groupNames)
public Object OthersInGroups(
    IList<string> groupNames
)
public:
virtual Object^ OthersInGroups(
    IList<String^>^ groupNames
) sealed
abstract OthersInGroups : 
        groupNames:IList<string> -> Object  
override OthersInGroups : 
        groupNames:IList<string> -> Object
public final function OthersInGroups(
    groupNames : IList<String>
) : Object

Parameters

Return Value

Type: System.Object
A dynamic representation of all clients in a group except the calling client.

Implements

IHubCallerConnectionContext.OthersInGroups(IList<String>)

See Also

Reference

HubConnectionContext Class

Microsoft.AspNet.SignalR.Hubs Namespace