Compartilhar via


MonoWebAssemblyJSRuntime.InvokeUnmarshalled Método

Definição

Sobrecargas

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

Invoca a função JavaScript registrada com o identificador especificado.

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

Invoca a função JavaScript registrada com o identificador especificado.

InvokeUnmarshalled<T0,TRes>(String, T0)

Invoca a função JavaScript registrada com o identificador especificado.

InvokeUnmarshalled<TRes>(String)

Invoca a função JavaScript registrada com o identificador especificado.

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

Origem:
MonoWebAssemblyJSRuntime.cs

Invoca a função JavaScript registrada com o 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

O tipo do primeiro argumento.

T1

O tipo do segundo argumento.

T2

O tipo do terceiro argumento.

TRes

O tipo .NET correspondente ao tipo de valor retornado da função.

Parâmetros

identifier
String

O identificador usado ao registrar a função de destino.

arg0
T0

O primeiro argumento.

arg1
T1

O segundo argumento.

arg2
T2

O terceiro argumento.

Retornos

TRes

O resultado da invocação da função.

Aplica-se a

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

Origem:
MonoWebAssemblyJSRuntime.cs

Invoca a função JavaScript registrada com o 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

O tipo do primeiro argumento.

T1

O tipo do segundo argumento.

TRes

O tipo .NET correspondente ao tipo de valor retornado da função.

Parâmetros

identifier
String

O identificador usado ao registrar a função de destino.

arg0
T0

O primeiro argumento.

arg1
T1

O segundo argumento.

Retornos

TRes

O resultado da invocação da função.

Aplica-se a

InvokeUnmarshalled<T0,TRes>(String, T0)

Origem:
MonoWebAssemblyJSRuntime.cs

Invoca a função JavaScript registrada com o 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

O tipo do primeiro argumento.

TRes

O tipo .NET correspondente ao tipo de valor retornado da função.

Parâmetros

identifier
String

O identificador usado ao registrar a função de destino.

arg0
T0

O primeiro argumento.

Retornos

TRes

O resultado da invocação da função.

Aplica-se a

InvokeUnmarshalled<TRes>(String)

Origem:
MonoWebAssemblyJSRuntime.cs

Invoca a função JavaScript registrada com o 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

O tipo .NET correspondente ao tipo de valor retornado da função.

Parâmetros

identifier
String

O identificador usado ao registrar a função de destino.

Retornos

TRes

O resultado da invocação da função.

Aplica-se a