JSInProcessRuntimeExtensions.InvokeVoid Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Ruft die angegebene JavaScript-Funktion synchron auf.
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())
Parameter
- jsRuntime
- IJSInProcessRuntime
Die IJSInProcessRuntime.
- identifier
- String
Ein Bezeichner für die funktion, die aufgerufen werden soll. Der Wert "someScope.someFunction"
ruft beispielsweise die -Funktion window.someScope.someFunction
auf.
- args
- Object[]
JSON-serialisierbare Argumente.