11 references to FunctionCall
Microsoft.AspNetCore.Components.Server (1)
Circuits\RemoteJSRuntime.cs (1)
114CallType = JSCallType.FunctionCall,
Microsoft.AspNetCore.Components.Server.Tests (1)
ProtectedBrowserStorageTest.cs (1)
361Invocations.Add((identifier, args, JSCallType.FunctionCall));
Microsoft.AspNetCore.Components.WebView (1)
Services\WebViewJSRuntime.cs (1)
38CallType = JSCallType.FunctionCall,
Microsoft.JSInterop (6)
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 (1)
27=> Invoke<TValue>(identifier, WindowObjectId, JSCallType.FunctionCall, args);
JSRuntime.cs (2)
71=> InvokeAsync<TValue>(WindowObjectId, identifier, JSCallType.FunctionCall, args); 85=> InvokeAsync<TValue>(WindowObjectId, identifier, JSCallType.FunctionCall, cancellationToken, args);
Microsoft.JSInterop.WebAssembly (2)
WebAssemblyJSRuntime.cs (2)
34(int)JSCallType.FunctionCall 67(int)JSCallType.FunctionCall