Share via


DefaultHubLifetimeManager<THub>.SendAllExceptAsync 方法

定义

将调用消息发送到除指定连接之外的所有中心连接。

public override System.Threading.Tasks.Task SendAllExceptAsync (string methodName, object[] args, System.Collections.Generic.IReadOnlyList<string> excludedConnectionIds, System.Threading.CancellationToken cancellationToken = default);
public override System.Threading.Tasks.Task SendAllExceptAsync (string methodName, object?[]? args, System.Collections.Generic.IReadOnlyList<string> excludedConnectionIds, System.Threading.CancellationToken cancellationToken = default);
public override System.Threading.Tasks.Task SendAllExceptAsync (string methodName, object?[] args, System.Collections.Generic.IReadOnlyList<string> excludedConnectionIds, System.Threading.CancellationToken cancellationToken = default);
override this.SendAllExceptAsync : string * obj[] * System.Collections.Generic.IReadOnlyList<string> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overrides Function SendAllExceptAsync (methodName As String, args As Object(), excludedConnectionIds As IReadOnlyList(Of String), Optional cancellationToken As CancellationToken = Nothing) As Task

参数

methodName
String

调用方法名称。

args
Object[]

调用参数。

excludedConnectionIds
IReadOnlyList<String>

要排除的连接 ID 的集合。

cancellationToken
CancellationToken

要监视取消请求的标记。 默认值是 None

返回

一个表示异步发送的 Task

适用于