IJSInProcessRuntime.Invoke<TResult>(String, Object[]) 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 la fonction JavaScript spécifiée de manière synchrone.
public T Invoke<T> (string identifier, params object[] args);
public TResult Invoke<TResult> (string identifier, params object?[]? args);
abstract member Invoke : string * obj[] -> 'T
abstract member Invoke : string * obj[] -> 'Result
Public Function Invoke(Of T) (identifier As String, ParamArray args As Object()) As T
Public Function Invoke(Of TResult) (identifier As String, ParamArray args As Object()) As TResult
Paramètres de type
- T TResult
Type de retour sérialisable JSON.
Paramètres
- identifier
- String
Identificateur de la fonction à appeler. Par exemple, la valeur "someScope.someFunction"
appelle la fonction window.someScope.someFunction
.
- args
- Object[]
Arguments sérialisables JSON.
Retours
Une instance de TResult
obtenue par désérialisation JSON de la valeur de retour.