IClientProxy.SendCoreAsync(String, Object[], CancellationToken) 方法

定义

对实例表示 IClientProxy 的连接 () 调用方法。 不等待接收方的响应。

public System.Threading.Tasks.Task SendCoreAsync (string method, object[] args, System.Threading.CancellationToken cancellationToken = default);
public System.Threading.Tasks.Task SendCoreAsync (string method, object?[]? args, System.Threading.CancellationToken cancellationToken = default);
public System.Threading.Tasks.Task SendCoreAsync (string method, object?[] args, System.Threading.CancellationToken cancellationToken = default);
abstract member SendCoreAsync : string * obj[] * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function SendCoreAsync (method As String, args As Object(), Optional cancellationToken As CancellationToken = Nothing) As Task

参数

method
String

要调用的方法的名称。

args
Object[]

要传递给客户端的参数集合。

cancellationToken
CancellationToken

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

返回

一个 Task ,它表示异步调用。

适用于