共用方式為


JSInProcessRuntime.InvokeJS 方法

定義

多載

InvokeJS(String, String)

執行同步函式調用。

InvokeJS(String, String, JSCallResultType, Int64)

執行同步函式調用。

InvokeJS(String, String)

來源:
JSInProcessRuntime.cs
來源:
JSInProcessRuntime.cs
來源:
JSInProcessRuntime.cs
來源:
JSInProcessRuntime.cs
來源:
JSInProcessRuntime.cs
來源:
JSInProcessRuntime.cs
來源:
JSInProcessRuntime.cs

執行同步函式調用。

protected:
 abstract System::String ^ InvokeJS(System::String ^ identifier, System::String ^ argsJson);
protected:
 virtual System::String ^ InvokeJS(System::String ^ identifier, System::String ^ argsJson);
protected abstract string InvokeJS (string identifier, string argsJson);
protected virtual string? InvokeJS (string identifier, string? argsJson);
abstract member InvokeJS : string * string -> string
abstract member InvokeJS : string * string -> string
override this.InvokeJS : string * string -> string
Protected MustOverride Function InvokeJS (identifier As String, argsJson As String) As String
Protected Overridable Function InvokeJS (identifier As String, argsJson As String) As String

參數

identifier
String

要叫用之函式的識別碼。

argsJson
String

引數的 JSON 表示。

傳回

結果的 JSON 表示。

適用於

InvokeJS(String, String, JSCallResultType, Int64)

來源:
JSInProcessRuntime.cs
來源:
JSInProcessRuntime.cs
來源:
JSInProcessRuntime.cs
來源:
JSInProcessRuntime.cs
來源:
JSInProcessRuntime.cs

執行同步函式調用。

protected:
 abstract System::String ^ InvokeJS(System::String ^ identifier, System::String ^ argsJson, Microsoft::JSInterop::JSCallResultType resultType, long targetInstanceId);
protected abstract string? InvokeJS (string identifier, string? argsJson, Microsoft.JSInterop.JSCallResultType resultType, long targetInstanceId);
abstract member InvokeJS : string * string * Microsoft.JSInterop.JSCallResultType * int64 -> string
Protected MustOverride Function InvokeJS (identifier As String, argsJson As String, resultType As JSCallResultType, targetInstanceId As Long) As String

參數

identifier
String

要叫用之函式的識別碼。

argsJson
String

引數的 JSON 表示。

resultType
JSCallResultType

叫用預期的結果類型。

targetInstanceId
Int64

目標 JS 物件的實例識別碼。

傳回

結果的 JSON 表示。

適用於