HubConnection.InvokeCoreAsync Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Appelle une méthode hub sur le serveur à l’aide du nom de la méthode, du type de retour et des arguments spécifiés.
public System.Threading.Tasks.Task<object> InvokeCoreAsync (string methodName, Type returnType, object[] args, System.Threading.CancellationToken cancellationToken = default);
public virtual System.Threading.Tasks.Task<object?> InvokeCoreAsync (string methodName, Type returnType, object?[] args, System.Threading.CancellationToken cancellationToken = default);
member this.InvokeCoreAsync : string * Type * obj[] * System.Threading.CancellationToken -> System.Threading.Tasks.Task<obj>
abstract member InvokeCoreAsync : string * Type * obj[] * System.Threading.CancellationToken -> System.Threading.Tasks.Task<obj>
override this.InvokeCoreAsync : string * Type * obj[] * System.Threading.CancellationToken -> System.Threading.Tasks.Task<obj>
Public Function InvokeCoreAsync (methodName As String, returnType As Type, args As Object(), Optional cancellationToken As CancellationToken = Nothing) As Task(Of Object)
Public Overridable Function InvokeCoreAsync (methodName As String, returnType As Type, args As Object(), Optional cancellationToken As CancellationToken = Nothing) As Task(Of Object)
Paramètres
- methodName
- String
Nom de la méthode de serveur à appeler.
- returnType
- Type
Type de retour de la méthode serveur.
- args
- Object[]
Arguments utilisés pour appeler la méthode serveur.
- cancellationToken
- CancellationToken
Jeton pour surveiller les requêtes d'annulation. La valeur par défaut est None.
Retours
Task<TResult> qui représente l’appel asynchrone. La Result propriété retourne un Object pour la valeur de retour de la méthode hub.
Remarques
Il s’agit d’une méthode de bas niveau pour appeler une méthode hub sur le serveur. Il est recommandé d’utiliser une méthode d’extension HubConnectionExtensionsInvokeAsync
.