JSInProcessRuntime.InvokeJS Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
InvokeJS(String, String) |
Esegue una chiamata di funzione sincrona. |
InvokeJS(String, String, JSCallResultType, Int64) |
Esegue una chiamata di funzione sincrona. |
InvokeJS(String, String)
- Origine:
- JSInProcessRuntime.cs
- Origine:
- JSInProcessRuntime.cs
- Origine:
- JSInProcessRuntime.cs
- Origine:
- JSInProcessRuntime.cs
- Origine:
- JSInProcessRuntime.cs
- Origine:
- JSInProcessRuntime.cs
- Origine:
- JSInProcessRuntime.cs
Esegue una chiamata di funzione sincrona.
protected:
abstract System::String ^ InvokeJS(System::String ^ identifier, System::String ^ argsJson);
protected:
virtual System::String ^ InvokeJS(System::String ^ identifier, System::String ^ argsJson);
protected abstract string InvokeJS (string identifier, string argsJson);
protected virtual string? InvokeJS (string identifier, string? argsJson);
abstract member InvokeJS : string * string -> string
abstract member InvokeJS : string * string -> string
override this.InvokeJS : string * string -> string
Protected MustOverride Function InvokeJS (identifier As String, argsJson As String) As String
Protected Overridable Function InvokeJS (identifier As String, argsJson As String) As String
Parametri
- identifier
- String
Identificatore della funzione da richiamare.
- argsJson
- String
Rappresentazione JSON degli argomenti.
Restituisce
Rappresentazione JSON del risultato.
Si applica a
InvokeJS(String, String, JSCallResultType, Int64)
- Origine:
- JSInProcessRuntime.cs
- Origine:
- JSInProcessRuntime.cs
- Origine:
- JSInProcessRuntime.cs
- Origine:
- JSInProcessRuntime.cs
- Origine:
- JSInProcessRuntime.cs
Esegue una chiamata di funzione sincrona.
protected:
abstract System::String ^ InvokeJS(System::String ^ identifier, System::String ^ argsJson, Microsoft::JSInterop::JSCallResultType resultType, long targetInstanceId);
protected abstract string? InvokeJS (string identifier, string? argsJson, Microsoft.JSInterop.JSCallResultType resultType, long targetInstanceId);
abstract member InvokeJS : string * string * Microsoft.JSInterop.JSCallResultType * int64 -> string
Protected MustOverride Function InvokeJS (identifier As String, argsJson As String, resultType As JSCallResultType, targetInstanceId As Long) As String
Parametri
- identifier
- String
Identificatore della funzione da richiamare.
- argsJson
- String
Rappresentazione JSON degli argomenti.
- resultType
- JSCallResultType
Tipo di risultato previsto dalla chiamata.
- targetInstanceId
- Int64
ID istanza dell'oggetto JS di destinazione.
Restituisce
Rappresentazione JSON del risultato.