Condividi tramite


HubConnection.SendCoreAsync(String, Object[], CancellationToken) Metodo

Definizione

Richiama un metodo hub nel server usando il nome e gli argomenti del metodo specificati. Non attende una risposta dal ricevitore.

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

Parametri

methodName
String

Nome del metodo del server da richiamare.

args
Object[]

Argomenti utilizzati per richiamare il metodo server.

cancellationToken
CancellationToken

Token da monitorare per le richieste di annullamento. Il valore predefinito è None.

Restituisce

Oggetto Task che rappresenta la chiamata asincrona.

Commenti

Si tratta di un metodo di basso livello per richiamare un metodo hub nel server. È consigliabile usare un HubConnectionExtensionsSendAsync metodo di estensione.

Si applica a