JSObjectReferenceExtensions.InvokeVoidAsync 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.
Surcharges
InvokeVoidAsync(IJSObjectReference, String, Object[]) |
Appelle la fonction JavaScript spécifiée de manière asynchrone. |
InvokeVoidAsync(IJSObjectReference, String, CancellationToken, Object[]) |
Appelle la fonction JavaScript spécifiée de manière asynchrone. |
InvokeVoidAsync(IJSObjectReference, String, TimeSpan, Object[]) |
Appelle la fonction JavaScript spécifiée de manière asynchrone. |
InvokeVoidAsync(IJSObjectReference, String, Object[])
Appelle la fonction JavaScript spécifiée de manière asynchrone.
public:
[System::Runtime::CompilerServices::Extension]
static System::Threading::Tasks::ValueTask InvokeVoidAsync(Microsoft::JSInterop::IJSObjectReference ^ jsObjectReference, System::String ^ identifier, ... cli::array <System::Object ^> ^ args);
public static System.Threading.Tasks.ValueTask InvokeVoidAsync (this Microsoft.JSInterop.IJSObjectReference jsObjectReference, string identifier, params object?[] args);
public static System.Threading.Tasks.ValueTask InvokeVoidAsync (this Microsoft.JSInterop.IJSObjectReference jsObjectReference, string identifier, params object?[]? args);
static member InvokeVoidAsync : Microsoft.JSInterop.IJSObjectReference * string * obj[] -> System.Threading.Tasks.ValueTask
<Extension()>
Public Function InvokeVoidAsync (jsObjectReference As IJSObjectReference, identifier As String, ParamArray args As Object()) As ValueTask
Paramètres
- jsObjectReference
- IJSObjectReference
L’IJSObjectReferenceopérateur
- identifier
- String
Identificateur de la fonction à appeler. Par exemple, la valeur "someScope.someFunction"
appelle la fonction someScope.someFunction
sur le instance cible.
- args
- Object[]
Arguments sérialisables JSON.
Retours
ValueTask qui représente l’opération d’appel asynchrone.
S’applique à
InvokeVoidAsync(IJSObjectReference, String, CancellationToken, Object[])
Appelle la fonction JavaScript spécifiée de manière asynchrone.
public:
[System::Runtime::CompilerServices::Extension]
static System::Threading::Tasks::ValueTask InvokeVoidAsync(Microsoft::JSInterop::IJSObjectReference ^ jsObjectReference, System::String ^ identifier, System::Threading::CancellationToken cancellationToken, ... cli::array <System::Object ^> ^ args);
public static System.Threading.Tasks.ValueTask InvokeVoidAsync (this Microsoft.JSInterop.IJSObjectReference jsObjectReference, string identifier, System.Threading.CancellationToken cancellationToken, params object?[] args);
public static System.Threading.Tasks.ValueTask InvokeVoidAsync (this Microsoft.JSInterop.IJSObjectReference jsObjectReference, string identifier, System.Threading.CancellationToken cancellationToken, params object?[]? args);
static member InvokeVoidAsync : Microsoft.JSInterop.IJSObjectReference * string * System.Threading.CancellationToken * obj[] -> System.Threading.Tasks.ValueTask
<Extension()>
Public Function InvokeVoidAsync (jsObjectReference As IJSObjectReference, identifier As String, cancellationToken As CancellationToken, ParamArray args As Object()) As ValueTask
Paramètres
- jsObjectReference
- IJSObjectReference
L’IJSObjectReferenceopérateur
- identifier
- String
Identificateur de la fonction à appeler. Par exemple, la valeur "someScope.someFunction"
appelle la fonction someScope.someFunction
sur le instance cible.
- cancellationToken
- CancellationToken
Jeton d’annulation pour signaler l’annulation de l’opération. La spécification de ce paramètre remplace toutes les annulations par défaut, par exemple en raison de délais d’attente (DefaultAsyncTimeout) d’application.
- args
- Object[]
Arguments sérialisables JSON.
Retours
ValueTask qui représente l’opération d’appel asynchrone.
S’applique à
InvokeVoidAsync(IJSObjectReference, String, TimeSpan, Object[])
Appelle la fonction JavaScript spécifiée de manière asynchrone.
public:
[System::Runtime::CompilerServices::Extension]
static System::Threading::Tasks::ValueTask InvokeVoidAsync(Microsoft::JSInterop::IJSObjectReference ^ jsObjectReference, System::String ^ identifier, TimeSpan timeout, ... cli::array <System::Object ^> ^ args);
public static System.Threading.Tasks.ValueTask InvokeVoidAsync (this Microsoft.JSInterop.IJSObjectReference jsObjectReference, string identifier, TimeSpan timeout, params object?[] args);
public static System.Threading.Tasks.ValueTask InvokeVoidAsync (this Microsoft.JSInterop.IJSObjectReference jsObjectReference, string identifier, TimeSpan timeout, params object?[]? args);
static member InvokeVoidAsync : Microsoft.JSInterop.IJSObjectReference * string * TimeSpan * obj[] -> System.Threading.Tasks.ValueTask
<Extension()>
Public Function InvokeVoidAsync (jsObjectReference As IJSObjectReference, identifier As String, timeout As TimeSpan, ParamArray args As Object()) As ValueTask
Paramètres
- jsObjectReference
- IJSObjectReference
L’IJSObjectReferenceopérateur
- identifier
- String
Identificateur de la fonction à appeler. Par exemple, la valeur "someScope.someFunction"
appelle la fonction someScope.someFunction
sur le instance cible.
- timeout
- TimeSpan
Durée après laquelle annuler l’opération asynchrone. Remplace les délais d’expiration par défaut (DefaultAsyncTimeout).
- args
- Object[]
Arguments sérialisables JSON.
Retours
ValueTask qui représente l’opération d’appel asynchrone.