IJSUnmarshalledRuntime.InvokeUnmarshalled Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
InvokeUnmarshalled<T0,T1,T2,TResult>(String, T0, T1, T2) |
Obsoletos.
Invoca la función de JavaScript registrada con el identificador especificado. |
InvokeUnmarshalled<T0,T1,TResult>(String, T0, T1) |
Obsoletos.
Invoca la función de JavaScript registrada con el identificador especificado. |
InvokeUnmarshalled<T0,TResult>(String, T0) |
Obsoletos.
Invoca la función de JavaScript registrada con el identificador especificado. |
InvokeUnmarshalled<TResult>(String) |
Obsoletos.
Invoca la función de JavaScript registrada con el identificador especificado. |
InvokeUnmarshalled<T0,T1,T2,TResult>(String, T0, T1, T2)
- Source:
- IJSUnmarshalledRuntime.cs
- Source:
- IJSUnmarshalledRuntime.cs
- Source:
- IJSUnmarshalledRuntime.cs
Precaución
This method is obsolete. Use JSImportAttribute instead.
Invoca la función de JavaScript registrada con el identificador especificado.
public:
generic <typename T0, typename T1, typename T2, typename TResult>
TResult InvokeUnmarshalled(System::String ^ identifier, T0 arg0, T1 arg1, T2 arg2);
public TResult InvokeUnmarshalled<T0,T1,T2,TResult> (string identifier, T0 arg0, T1 arg1, T2 arg2);
[System.Obsolete("This method is obsolete. Use JSImportAttribute instead.")]
public TResult InvokeUnmarshalled<T0,T1,T2,TResult> (string identifier, T0 arg0, T1 arg1, T2 arg2);
abstract member InvokeUnmarshalled : string * 'T0 * 'T1 * 'T2 -> 'Result
[<System.Obsolete("This method is obsolete. Use JSImportAttribute instead.")>]
abstract member InvokeUnmarshalled : string * 'T0 * 'T1 * 'T2 -> 'Result
Public Function InvokeUnmarshalled(Of T0, T1, T2, TResult) (identifier As String, arg0 As T0, arg1 As T1, arg2 As T2) As TResult
Parámetros de tipo
- T0
Tipo del primer argumento.
- T1
Tipo del segundo argumento.
- T2
Tipo del tercer argumento.
- TResult
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
Resultado de la invocación de función.
- Atributos
Se aplica a
InvokeUnmarshalled<T0,T1,TResult>(String, T0, T1)
- Source:
- IJSUnmarshalledRuntime.cs
- Source:
- IJSUnmarshalledRuntime.cs
- Source:
- IJSUnmarshalledRuntime.cs
Precaución
This method is obsolete. Use JSImportAttribute instead.
Invoca la función de JavaScript registrada con el identificador especificado.
public:
generic <typename T0, typename T1, typename TResult>
TResult InvokeUnmarshalled(System::String ^ identifier, T0 arg0, T1 arg1);
public TResult InvokeUnmarshalled<T0,T1,TResult> (string identifier, T0 arg0, T1 arg1);
[System.Obsolete("This method is obsolete. Use JSImportAttribute instead.")]
public TResult InvokeUnmarshalled<T0,T1,TResult> (string identifier, T0 arg0, T1 arg1);
abstract member InvokeUnmarshalled : string * 'T0 * 'T1 -> 'Result
[<System.Obsolete("This method is obsolete. Use JSImportAttribute instead.")>]
abstract member InvokeUnmarshalled : string * 'T0 * 'T1 -> 'Result
Public Function InvokeUnmarshalled(Of T0, T1, TResult) (identifier As String, arg0 As T0, arg1 As T1) As TResult
Parámetros de tipo
- T0
Tipo del primer argumento.
- T1
Tipo del segundo argumento.
- TResult
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
Resultado de la invocación de función.
- Atributos
Se aplica a
InvokeUnmarshalled<T0,TResult>(String, T0)
- Source:
- IJSUnmarshalledRuntime.cs
- Source:
- IJSUnmarshalledRuntime.cs
- Source:
- IJSUnmarshalledRuntime.cs
Precaución
This method is obsolete. Use JSImportAttribute instead.
Invoca la función de JavaScript registrada con el identificador especificado.
public:
generic <typename T0, typename TResult>
TResult InvokeUnmarshalled(System::String ^ identifier, T0 arg0);
public TResult InvokeUnmarshalled<T0,TResult> (string identifier, T0 arg0);
[System.Obsolete("This method is obsolete. Use JSImportAttribute instead.")]
public TResult InvokeUnmarshalled<T0,TResult> (string identifier, T0 arg0);
abstract member InvokeUnmarshalled : string * 'T0 -> 'Result
[<System.Obsolete("This method is obsolete. Use JSImportAttribute instead.")>]
abstract member InvokeUnmarshalled : string * 'T0 -> 'Result
Public Function InvokeUnmarshalled(Of T0, TResult) (identifier As String, arg0 As T0) As TResult
Parámetros de tipo
- T0
Tipo del primer argumento.
- TResult
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
Resultado de la invocación de función.
- Atributos
Se aplica a
InvokeUnmarshalled<TResult>(String)
- Source:
- IJSUnmarshalledRuntime.cs
- Source:
- IJSUnmarshalledRuntime.cs
- Source:
- IJSUnmarshalledRuntime.cs
Precaución
This method is obsolete. Use JSImportAttribute instead.
Invoca la función de JavaScript registrada con el identificador especificado.
public:
generic <typename TResult>
TResult InvokeUnmarshalled(System::String ^ identifier);
public TResult InvokeUnmarshalled<TResult> (string identifier);
[System.Obsolete("This method is obsolete. Use JSImportAttribute instead.")]
public TResult InvokeUnmarshalled<TResult> (string identifier);
abstract member InvokeUnmarshalled : string -> 'Result
[<System.Obsolete("This method is obsolete. Use JSImportAttribute instead.")>]
abstract member InvokeUnmarshalled : string -> 'Result
Public Function InvokeUnmarshalled(Of TResult) (identifier As String) As TResult
Parámetros de tipo
- TResult
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
Resultado de la invocación de función.
- Atributos