WebAssemblyJSRuntime.InvokeUnmarshalled 메서드

정의

오버로드

InvokeUnmarshalled<T0,T1,T2,TResult>(String, T0, T1, T2)
사용되지 않음.

지정된 식별자에 등록된 JavaScript 함수를 호출합니다.

InvokeUnmarshalled<T0,T1,TResult>(String, T0, T1)
사용되지 않음.

지정된 식별자에 등록된 JavaScript 함수를 호출합니다.

InvokeUnmarshalled<T0,TResult>(String, T0)
사용되지 않음.

지정된 식별자에 등록된 JavaScript 함수를 호출합니다.

InvokeUnmarshalled<TResult>(String)
사용되지 않음.

지정된 식별자에 등록된 JavaScript 함수를 호출합니다.

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

Source:
WebAssemblyJSRuntime.cs
Source:
WebAssemblyJSRuntime.cs
Source:
WebAssemblyJSRuntime.cs
Source:
WebAssemblyJSRuntime.cs
Source:
WebAssemblyJSRuntime.cs

주의

This method is obsolete. Use JSImportAttribute instead.

지정된 식별자에 등록된 JavaScript 함수를 호출합니다.

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);
member this.InvokeUnmarshalled : string * 'T0 * 'T1 * 'T2 -> 'Result
abstract member InvokeUnmarshalled : string * 'T0 * 'T1 * 'T2 -> 'Result
override this.InvokeUnmarshalled : string * 'T0 * 'T1 * 'T2 -> 'Result
[<System.Obsolete("This method is obsolete. Use JSImportAttribute instead.")>]
abstract member InvokeUnmarshalled : string * 'T0 * 'T1 * 'T2 -> 'Result
override this.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

형식 매개 변수

T0

첫 번째 인수의 형식입니다.

T1

두 번째 인수의 형식입니다.

T2

세 번째 인수의 형식입니다.

TResult

함수의 반환 값 형식에 해당하는 .NET 형식입니다.

매개 변수

identifier
String

대상 함수를 등록할 때 사용되는 식별자입니다.

arg0
T0

첫 번째 인수입니다.

arg1
T1

두 번째 인수입니다.

arg2
T2

세 번째 인수입니다.

반환

TResult

함수 호출의 결과입니다.

구현

특성

적용 대상

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

Source:
WebAssemblyJSRuntime.cs
Source:
WebAssemblyJSRuntime.cs
Source:
WebAssemblyJSRuntime.cs
Source:
WebAssemblyJSRuntime.cs
Source:
WebAssemblyJSRuntime.cs

주의

This method is obsolete. Use JSImportAttribute instead.

지정된 식별자에 등록된 JavaScript 함수를 호출합니다.

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);
member this.InvokeUnmarshalled : string * 'T0 * 'T1 -> 'Result
abstract member InvokeUnmarshalled : string * 'T0 * 'T1 -> 'Result
override this.InvokeUnmarshalled : string * 'T0 * 'T1 -> 'Result
[<System.Obsolete("This method is obsolete. Use JSImportAttribute instead.")>]
abstract member InvokeUnmarshalled : string * 'T0 * 'T1 -> 'Result
override this.InvokeUnmarshalled : string * 'T0 * 'T1 -> 'Result
Public Function InvokeUnmarshalled(Of T0, T1, TResult) (identifier As String, arg0 As T0, arg1 As T1) As TResult

형식 매개 변수

T0

첫 번째 인수의 형식입니다.

T1

두 번째 인수의 형식입니다.

TResult

함수의 반환 값 형식에 해당하는 .NET 형식입니다.

매개 변수

identifier
String

대상 함수를 등록할 때 사용되는 식별자입니다.

arg0
T0

첫 번째 인수입니다.

arg1
T1

두 번째 인수입니다.

반환

TResult

함수 호출의 결과입니다.

구현

특성

적용 대상

InvokeUnmarshalled<T0,TResult>(String, T0)

Source:
WebAssemblyJSRuntime.cs
Source:
WebAssemblyJSRuntime.cs
Source:
WebAssemblyJSRuntime.cs
Source:
WebAssemblyJSRuntime.cs
Source:
WebAssemblyJSRuntime.cs

주의

This method is obsolete. Use JSImportAttribute instead.

지정된 식별자에 등록된 JavaScript 함수를 호출합니다.

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);
member this.InvokeUnmarshalled : string * 'T0 -> 'Result
abstract member InvokeUnmarshalled : string * 'T0 -> 'Result
override this.InvokeUnmarshalled : string * 'T0 -> 'Result
[<System.Obsolete("This method is obsolete. Use JSImportAttribute instead.")>]
abstract member InvokeUnmarshalled : string * 'T0 -> 'Result
override this.InvokeUnmarshalled : string * 'T0 -> 'Result
Public Function InvokeUnmarshalled(Of T0, TResult) (identifier As String, arg0 As T0) As TResult

형식 매개 변수

T0

첫 번째 인수의 형식입니다.

TResult

함수의 반환 값 형식에 해당하는 .NET 형식입니다.

매개 변수

identifier
String

대상 함수를 등록할 때 사용되는 식별자입니다.

arg0
T0

첫 번째 인수입니다.

반환

TResult

함수 호출의 결과입니다.

구현

특성

적용 대상

InvokeUnmarshalled<TResult>(String)

Source:
WebAssemblyJSRuntime.cs
Source:
WebAssemblyJSRuntime.cs
Source:
WebAssemblyJSRuntime.cs
Source:
WebAssemblyJSRuntime.cs
Source:
WebAssemblyJSRuntime.cs

주의

This method is obsolete. Use JSImportAttribute instead.

지정된 식별자에 등록된 JavaScript 함수를 호출합니다.

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);
member this.InvokeUnmarshalled : string -> 'Result
abstract member InvokeUnmarshalled : string -> 'Result
override this.InvokeUnmarshalled : string -> 'Result
[<System.Obsolete("This method is obsolete. Use JSImportAttribute instead.")>]
abstract member InvokeUnmarshalled : string -> 'Result
override this.InvokeUnmarshalled : string -> 'Result
Public Function InvokeUnmarshalled(Of TResult) (identifier As String) As TResult

형식 매개 변수

TResult

함수의 반환 값 형식에 해당하는 .NET 형식입니다.

매개 변수

identifier
String

대상 함수를 등록할 때 사용되는 식별자입니다.

반환

TResult

함수 호출의 결과입니다.

구현

특성

적용 대상