Share via


IConnectionGroupManager.Send Method (IList<String>, Object, String[])

.NET Framework 4.5

Sends a value to the specified groups.

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

Syntax

'Declaration
Function Send ( _
    groupNames As IList(Of String), _
    value As Object, _
    ParamArray excludeConnectionIds As String() _
) As Task
'Usage
Dim instance As IConnectionGroupManager 
Dim groupNames As IList(Of String)
Dim value As Object 
Dim excludeConnectionIds As String()
Dim returnValue As Task 

returnValue = instance.Send(groupNames, _
    value, excludeConnectionIds)
Task Send(
    IList<string> groupNames,
    Object value,
    params string[] excludeConnectionIds
)
Task^ Send(
    IList<String^>^ groupNames, 
    Object^ value, 
    ... array<String^>^ excludeConnectionIds
)
abstract Send : 
        groupNames:IList<string> * 
        value:Object * 
        excludeConnectionIds:string[] -> Task
function Send(
    groupNames : IList<String>, 
    value : Object, 
    ... excludeConnectionIds : String[]
) : Task

Parameters

  • excludeConnectionIds
    Type: System.String[]
    The list of connection ids to exclude

Return Value

Type: System.Threading.Tasks.Task
A task that represents when send is complete.

See Also

Reference

IConnectionGroupManager Interface

Send Overload

Microsoft.AspNet.SignalR Namespace