MonoWebAssemblyJSRuntime.InvokeUnmarshalled Method

Definition

Overloads

InvokeUnmarshalled<T0,T1,T2,TRes>(String, T0, T1, T2)

Invokes the JavaScript function registered with the specified identifier.

InvokeUnmarshalled<T0,T1,TRes>(String, T0, T1)

Invokes the JavaScript function registered with the specified identifier.

InvokeUnmarshalled<T0,TRes>(String, T0)

Invokes the JavaScript function registered with the specified identifier.

InvokeUnmarshalled<TRes>(String)

Invokes the JavaScript function registered with the specified identifier.

InvokeUnmarshalled<T0,T1,T2,TRes>(String, T0, T1, T2)

Source:
MonoWebAssemblyJSRuntime.cs

Invokes the JavaScript function registered with the specified identifier.

public:
generic <typename T0, typename T1, typename T2, typename TRes>
 TRes InvokeUnmarshalled(System::String ^ identifier, T0 arg0, T1 arg1, T2 arg2);
public TRes InvokeUnmarshalled<T0,T1,T2,TRes> (string identifier, T0 arg0, T1 arg1, T2 arg2);
member this.InvokeUnmarshalled : string * 'T0 * 'T1 * 'T2 -> 'Res
Public Function InvokeUnmarshalled(Of T0, T1, T2, TRes) (identifier As String, arg0 As T0, arg1 As T1, arg2 As T2) As TRes

Type Parameters

T0

The type of the first argument.

T1

The type of the second argument.

T2

The type of the third argument.

TRes

The .NET type corresponding to the function's return value type.

Parameters

identifier
String

The identifier used when registering the target function.

arg0
T0

The first argument.

arg1
T1

The second argument.

arg2
T2

The third argument.

Returns

TRes

The result of the function invocation.

Applies to

InvokeUnmarshalled<T0,T1,TRes>(String, T0, T1)

Source:
MonoWebAssemblyJSRuntime.cs

Invokes the JavaScript function registered with the specified identifier.

public:
generic <typename T0, typename T1, typename TRes>
 TRes InvokeUnmarshalled(System::String ^ identifier, T0 arg0, T1 arg1);
public TRes InvokeUnmarshalled<T0,T1,TRes> (string identifier, T0 arg0, T1 arg1);
member this.InvokeUnmarshalled : string * 'T0 * 'T1 -> 'Res
Public Function InvokeUnmarshalled(Of T0, T1, TRes) (identifier As String, arg0 As T0, arg1 As T1) As TRes

Type Parameters

T0

The type of the first argument.

T1

The type of the second argument.

TRes

The .NET type corresponding to the function's return value type.

Parameters

identifier
String

The identifier used when registering the target function.

arg0
T0

The first argument.

arg1
T1

The second argument.

Returns

TRes

The result of the function invocation.

Applies to

InvokeUnmarshalled<T0,TRes>(String, T0)

Source:
MonoWebAssemblyJSRuntime.cs

Invokes the JavaScript function registered with the specified identifier.

public:
generic <typename T0, typename TRes>
 TRes InvokeUnmarshalled(System::String ^ identifier, T0 arg0);
public TRes InvokeUnmarshalled<T0,TRes> (string identifier, T0 arg0);
member this.InvokeUnmarshalled : string * 'T0 -> 'Res
Public Function InvokeUnmarshalled(Of T0, TRes) (identifier As String, arg0 As T0) As TRes

Type Parameters

T0

The type of the first argument.

TRes

The .NET type corresponding to the function's return value type.

Parameters

identifier
String

The identifier used when registering the target function.

arg0
T0

The first argument.

Returns

TRes

The result of the function invocation.

Applies to

InvokeUnmarshalled<TRes>(String)

Source:
MonoWebAssemblyJSRuntime.cs

Invokes the JavaScript function registered with the specified identifier.

public:
generic <typename TRes>
 TRes InvokeUnmarshalled(System::String ^ identifier);
public TRes InvokeUnmarshalled<TRes> (string identifier);
member this.InvokeUnmarshalled : string -> 'Res
Public Function InvokeUnmarshalled(Of TRes) (identifier As String) As TRes

Type Parameters

TRes

The .NET type corresponding to the function's return value type.

Parameters

identifier
String

The identifier used when registering the target function.

Returns

TRes

The result of the function invocation.

Applies to