9 references to FunctionCall
Microsoft.AspNetCore.Components.Server (1)
Circuits\RemoteJSRuntime.cs (1)
114
CallType = JSCallType.
FunctionCall
,
Microsoft.JSInterop (8)
Implementation\JSInProcessObjectReference.cs (1)
34
return _jsRuntime.Invoke<TValue>(identifier, Id, JSCallType.
FunctionCall
, args);
Implementation\JSObjectReference.cs (2)
41
return _jsRuntime.InvokeAsync<TValue>(Id, identifier, JSCallType.
FunctionCall
, args);
49
return _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)
71
=> InvokeAsync<TValue>(WindowObjectId, identifier, JSCallType.
FunctionCall
, args);
85
=> InvokeAsync<TValue>(WindowObjectId, identifier, JSCallType.
FunctionCall
, cancellationToken, args);
195
/// Begins an asynchronous function invocation with the call type <see cref="JSCallType.
FunctionCall
"/>.