3 overrides of BeginInvokeJS
Microsoft.AspNetCore.Components.Server (1)
Circuits\RemoteJSRuntime.cs (1)
107protected override void BeginInvokeJS(long asyncHandle, string identifier, string argsJson, JSCallResultType resultType, long targetInstanceId)
Microsoft.AspNetCore.Components.WebView (1)
Services\WebViewJSRuntime.cs (1)
32protected override void BeginInvokeJS(long taskId, string identifier, string argsJson, JSCallResultType resultType, long targetInstanceId)
Microsoft.JSInterop.WebAssembly (1)
WebAssemblyJSRuntime.cs (1)
59protected override void BeginInvokeJS(long asyncHandle, string identifier, [StringSyntax(StringSyntaxAttribute.Json)] string? argsJson, JSCallResultType resultType, long targetInstanceId)
2 references to BeginInvokeJS
Microsoft.JSInterop (2)
JSRuntime.cs (2)
192=> BeginInvokeJS(taskId, identifier, argsJson, JSCallResultType.Default, WindowObjectId); 211BeginInvokeJS(invocationInfo.AsyncHandle, invocationInfo.Identifier, invocationInfo.ArgsJson, invocationInfo.ResultType, invocationInfo.TargetInstanceId);