共用方式為


WebAssemblyJSRuntime.BeginInvokeJS 方法

定義

多載

BeginInvokeJS(Int64, String, String)

開始非同步函式調用。

BeginInvokeJS(Int64, String, String, JSCallResultType, Int64)

開始非同步函式調用。

BeginInvokeJS(Int64, String, String)

來源:
WebAssemblyJSRuntime.cs

開始非同步函式調用。

protected:
 override void BeginInvokeJS(long asyncHandle, System::String ^ identifier, System::String ^ argsJson);
protected override void BeginInvokeJS (long asyncHandle, string identifier, string argsJson);
override this.BeginInvokeJS : int64 * string * string -> unit
Protected Overrides Sub BeginInvokeJS (asyncHandle As Long, identifier As String, argsJson As String)

參數

asyncHandle
Int64
identifier
String

要叫用之函式的識別碼。

argsJson
String

引數的 JSON 表示。

適用於

BeginInvokeJS(Int64, String, String, JSCallResultType, Int64)

來源:
WebAssemblyJSRuntime.cs
來源:
WebAssemblyJSRuntime.cs
來源:
WebAssemblyJSRuntime.cs
來源:
WebAssemblyJSRuntime.cs
來源:
WebAssemblyJSRuntime.cs

開始非同步函式調用。

protected override void BeginInvokeJS (long asyncHandle, string identifier, string argsJson, Microsoft.JSInterop.JSCallResultType resultType, long targetInstanceId);
protected override void BeginInvokeJS (long asyncHandle, string identifier, string? argsJson, Microsoft.JSInterop.JSCallResultType resultType, long targetInstanceId);
override this.BeginInvokeJS : int64 * string * string * Microsoft.JSInterop.JSCallResultType * int64 -> unit
Protected Overrides Sub BeginInvokeJS (asyncHandle As Long, identifier As String, argsJson As String, resultType As JSCallResultType, targetInstanceId As Long)

參數

asyncHandle
Int64
identifier
String

要叫用之函式的識別碼。

argsJson
String

引數的 JSON 表示。

resultType
JSCallResultType

叫用預期的結果類型。

targetInstanceId
Int64

目標 JS 物件的實例識別碼。

適用於