Compartir a través de


MonoWebAssemblyJSRuntime.InvokeUnmarshalled Método

Definición

Sobrecargas

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

Invoca la función de JavaScript registrada con el identificador especificado.

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

Invoca la función de JavaScript registrada con el identificador especificado.

InvokeUnmarshalled<T0,TRes>(String, T0)

Invoca la función de JavaScript registrada con el identificador especificado.

InvokeUnmarshalled<TRes>(String)

Invoca la función de JavaScript registrada con el identificador especificado.

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

Source:
MonoWebAssemblyJSRuntime.cs

Invoca la función de JavaScript registrada con el identificador especificado.

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

Parámetros de tipo

T0

Tipo del primer argumento.

T1

Tipo del segundo argumento.

T2

Tipo del tercer argumento.

TRes

Tipo de .NET correspondiente al tipo de valor devuelto de la función.

Parámetros

identifier
String

Identificador utilizado al registrar la función de destino.

arg0
T0

Primer argumento.

arg1
T1

Segundo argumento.

arg2
T2

Tercer argumento.

Devoluciones

TRes

Resultado de la invocación de función.

Se aplica a

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

Source:
MonoWebAssemblyJSRuntime.cs

Invoca la función de JavaScript registrada con el identificador especificado.

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

Parámetros de tipo

T0

Tipo del primer argumento.

T1

Tipo del segundo argumento.

TRes

Tipo de .NET correspondiente al tipo de valor devuelto de la función.

Parámetros

identifier
String

Identificador utilizado al registrar la función de destino.

arg0
T0

Primer argumento.

arg1
T1

Segundo argumento.

Devoluciones

TRes

Resultado de la invocación de función.

Se aplica a

InvokeUnmarshalled<T0,TRes>(String, T0)

Source:
MonoWebAssemblyJSRuntime.cs

Invoca la función de JavaScript registrada con el identificador especificado.

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

Parámetros de tipo

T0

Tipo del primer argumento.

TRes

Tipo de .NET correspondiente al tipo de valor devuelto de la función.

Parámetros

identifier
String

Identificador utilizado al registrar la función de destino.

arg0
T0

Primer argumento.

Devoluciones

TRes

Resultado de la invocación de función.

Se aplica a

InvokeUnmarshalled<TRes>(String)

Source:
MonoWebAssemblyJSRuntime.cs

Invoca la función de JavaScript registrada con el identificador especificado.

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

Parámetros de tipo

TRes

Tipo de .NET correspondiente al tipo de valor devuelto de la función.

Parámetros

identifier
String

Identificador utilizado al registrar la función de destino.

Devoluciones

TRes

Resultado de la invocación de función.

Se aplica a