WebAssemblyJSRuntime.InvokeJS Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
InvokeJS(String, String) |
Führt einen synchronen Funktionsaufruf aus. |
InvokeJS(String, String, JSCallResultType, Int64) |
Führt einen synchronen Funktionsaufruf aus. |
InvokeJS(String, String)
- Quelle:
- WebAssemblyJSRuntime.cs
Führt einen synchronen Funktionsaufruf aus.
protected:
override System::String ^ InvokeJS(System::String ^ identifier, System::String ^ argsJson);
protected override string InvokeJS (string identifier, string argsJson);
override this.InvokeJS : string * string -> string
Protected Overrides Function InvokeJS (identifier As String, argsJson As String) As String
Parameter
- identifier
- String
Der Bezeichner für die aufzurufende Funktion.
- argsJson
- String
Eine JSON-Darstellung der Argumente.
Gibt zurück
Eine JSON-Darstellung des Ergebnisses.
Gilt für:
InvokeJS(String, String, JSCallResultType, Int64)
- Quelle:
- WebAssemblyJSRuntime.cs
- Quelle:
- WebAssemblyJSRuntime.cs
- Quelle:
- WebAssemblyJSRuntime.cs
- Quelle:
- WebAssemblyJSRuntime.cs
- Quelle:
- WebAssemblyJSRuntime.cs
Führt einen synchronen Funktionsaufruf aus.
protected override string InvokeJS (string identifier, string argsJson, Microsoft.JSInterop.JSCallResultType resultType, long targetInstanceId);
protected override string InvokeJS (string identifier, string? argsJson, Microsoft.JSInterop.JSCallResultType resultType, long targetInstanceId);
override this.InvokeJS : string * string * Microsoft.JSInterop.JSCallResultType * int64 -> string
Protected Overrides Function InvokeJS (identifier As String, argsJson As String, resultType As JSCallResultType, targetInstanceId As Long) As String
Parameter
- identifier
- String
Der Bezeichner für die aufzurufende Funktion.
- argsJson
- String
Eine JSON-Darstellung der Argumente.
- resultType
- JSCallResultType
Der Typ des Ergebnisses, das vom Aufruf erwartet wird.
- targetInstanceId
- Int64
Die instance-ID des JS-Zielobjekts.
Gibt zurück
Eine JSON-Darstellung des Ergebnisses.