Share via


WebAssemblyJSRuntime.BeginInvokeJS Method

Definition

Overloads

BeginInvokeJS(Int64, String, String)

Begins an asynchronous function invocation.

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

Begins an asynchronous function invocation.

BeginInvokeJS(Int64, String, String)

Source:
WebAssemblyJSRuntime.cs

Begins an asynchronous function invocation.

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)

Parameters

asyncHandle
Int64
identifier
String

The identifier for the function to invoke.

argsJson
String

A JSON representation of the arguments.

Applies to

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

Source:
WebAssemblyJSRuntime.cs
Source:
WebAssemblyJSRuntime.cs
Source:
WebAssemblyJSRuntime.cs
Source:
WebAssemblyJSRuntime.cs
Source:
WebAssemblyJSRuntime.cs

Begins an asynchronous function invocation.

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)

Parameters

asyncHandle
Int64
identifier
String

The identifier for the function to invoke.

argsJson
String

A JSON representation of the arguments.

resultType
JSCallResultType

The type of result expected from the invocation.

targetInstanceId
Int64

The instance ID of the target JS object.

Applies to