12 references to FunctionCall
Microsoft.AspNetCore.Components.Server (1)
Circuits\RemoteJSRuntime.cs (1)
120CallType = JSCallType.FunctionCall,
Microsoft.AspNetCore.Components.WebView (1)
Services\WebViewJSRuntime.cs (1)
39CallType = JSCallType.FunctionCall,
Microsoft.JSInterop (8)
Implementation\JSInProcessObjectReference.cs (1)
34return _jsRuntime.Invoke<TValue>(identifier, Id, JSCallType.FunctionCall, args);
Implementation\JSObjectReference.cs (2)
41return _jsRuntime.InvokeAsync<TValue>(Id, identifier, JSCallType.FunctionCall, args); 49return _jsRuntime.InvokeAsync<TValue>(Id, identifier, JSCallType.FunctionCall, cancellationToken, args);
JSInProcessRuntime.cs (2)
27=> Invoke<TValue>(identifier, WindowObjectId, JSCallType.FunctionCall, args); 84/// Performs a synchronous function invocation with the call type <see cref="JSCallType.FunctionCall"/>.
JSRuntime.cs (3)
82=> InvokeAsync<TValue>(WindowObjectId, identifier, JSCallType.FunctionCall, args); 96=> InvokeAsync<TValue>(WindowObjectId, identifier, JSCallType.FunctionCall, cancellationToken, args); 206/// Begins an asynchronous function invocation with the call type <see cref="JSCallType.FunctionCall"/>.
Microsoft.JSInterop.WebAssembly (2)
WebAssemblyJSRuntime.cs (2)
34(int)JSCallType.FunctionCall 67(int)JSCallType.FunctionCall