JSInProcessRuntimeExtensions.InvokeVoid Method

Definition

Invokes the specified JavaScript function synchronously.

public:
[System::Runtime::CompilerServices::Extension]
 static void InvokeVoid(Microsoft::JSInterop::IJSInProcessRuntime ^ jsRuntime, System::String ^ identifier, ... cli::array <System::Object ^> ^ args);
public static void InvokeVoid (this Microsoft.JSInterop.IJSInProcessRuntime jsRuntime, string identifier, params object[] args);
public static void InvokeVoid (this Microsoft.JSInterop.IJSInProcessRuntime jsRuntime, string identifier, params object?[] args);
public static void InvokeVoid (this Microsoft.JSInterop.IJSInProcessRuntime jsRuntime, string identifier, params object?[]? args);
static member InvokeVoid : Microsoft.JSInterop.IJSInProcessRuntime * string * obj[] -> unit
<Extension()>
Public Sub InvokeVoid (jsRuntime As IJSInProcessRuntime, identifier As String, ParamArray args As Object())

Parameters

identifier
String

An identifier for the function to invoke. For example, the value "someScope.someFunction" will invoke the function window.someScope.someFunction.

args
Object[]

JSON-serializable arguments.

Applies to