WebAssemblyJSRuntime.InvokeJS メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
InvokeJS(String, String) |
同期関数呼び出しを実行します。 |
InvokeJS(String, String, JSCallResultType, Int64) |
同期関数呼び出しを実行します。 |
InvokeJS(String, String)
同期関数呼び出しを実行します。
protected:
override System::String ^ InvokeJS(System::String ^ identifier, System::String ^ argsJson);
protected override string InvokeJS (string identifier, string argsJson);
override this.InvokeJS : string * string -> string
Protected Overrides Function InvokeJS (identifier As String, argsJson As String) As String
パラメーター
- identifier
- String
呼び出す関数の識別子。
- argsJson
- String
引数の JSON 表現。
戻り値
結果の JSON 表現。
適用対象
InvokeJS(String, String, JSCallResultType, Int64)
同期関数呼び出しを実行します。
protected override string InvokeJS (string identifier, string argsJson, Microsoft.JSInterop.JSCallResultType resultType, long targetInstanceId);
protected override string InvokeJS (string identifier, string? argsJson, Microsoft.JSInterop.JSCallResultType resultType, long targetInstanceId);
override this.InvokeJS : string * string * Microsoft.JSInterop.JSCallResultType * int64 -> string
Protected Overrides 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 オブジェクトのインスタンス ID。
戻り値
結果の JSON 表現。