IJSUnmarshalledRuntime.InvokeUnmarshalled Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
InvokeUnmarshalled<T0,T1,T2,TResult>(String, T0, T1, T2) |
Obsolete.
Invokes the JavaScript function registered with the specified identifier. |
InvokeUnmarshalled<T0,T1,TResult>(String, T0, T1) |
Obsolete.
Invokes the JavaScript function registered with the specified identifier. |
InvokeUnmarshalled<T0,TResult>(String, T0) |
Obsolete.
Invokes the JavaScript function registered with the specified identifier. |
InvokeUnmarshalled<TResult>(String) |
Obsolete.
Invokes the JavaScript function registered with the specified identifier. |
InvokeUnmarshalled<T0,T1,T2,TResult>(String, T0, T1, T2)
- Source:
- IJSUnmarshalledRuntime.cs
- Source:
- IJSUnmarshalledRuntime.cs
- Source:
- IJSUnmarshalledRuntime.cs
Caution
This method is obsolete. Use JSImportAttribute instead.
Invokes the JavaScript function registered with the specified identifier.
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
Type Parameters
- T0
The type of the first argument.
- T1
The type of the second argument.
- T2
The type of the third argument.
- TResult
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
The result of the function invocation.
- Attributes
Applies to
InvokeUnmarshalled<T0,T1,TResult>(String, T0, T1)
- Source:
- IJSUnmarshalledRuntime.cs
- Source:
- IJSUnmarshalledRuntime.cs
- Source:
- IJSUnmarshalledRuntime.cs
Caution
This method is obsolete. Use JSImportAttribute instead.
Invokes the JavaScript function registered with the specified identifier.
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
Type Parameters
- T0
The type of the first argument.
- T1
The type of the second argument.
- TResult
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
The result of the function invocation.
- Attributes
Applies to
InvokeUnmarshalled<T0,TResult>(String, T0)
- Source:
- IJSUnmarshalledRuntime.cs
- Source:
- IJSUnmarshalledRuntime.cs
- Source:
- IJSUnmarshalledRuntime.cs
Caution
This method is obsolete. Use JSImportAttribute instead.
Invokes the JavaScript function registered with the specified identifier.
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
Type Parameters
- T0
The type of the first argument.
- TResult
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
The result of the function invocation.
- Attributes
Applies to
InvokeUnmarshalled<TResult>(String)
- Source:
- IJSUnmarshalledRuntime.cs
- Source:
- IJSUnmarshalledRuntime.cs
- Source:
- IJSUnmarshalledRuntime.cs
Caution
This method is obsolete. Use JSImportAttribute instead.
Invokes the JavaScript function registered with the specified identifier.
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
Type Parameters
- TResult
The .NET type corresponding to the function's return value type.
Parameters
- identifier
- String
The identifier used when registering the target function.
Returns
The result of the function invocation.
- Attributes