7 references to InvokeAsync
Microsoft.JSInterop (7)
Implementation\JSObjectReference.cs (2)
49
return _jsRuntime.
InvokeAsync
<TValue>(Id, identifier, JSCallType.FunctionCall, cancellationToken, args);
65
return _jsRuntime.
InvokeAsync
<IJSObjectReference>(Id, identifier, JSCallType.NewCall, cancellationToken, args);
JSRuntime.cs (5)
85
=>
InvokeAsync
<TValue>(WindowObjectId, identifier, JSCallType.FunctionCall, cancellationToken, args);
93
=>
InvokeAsync
<IJSObjectReference>(WindowObjectId, identifier, JSCallType.NewCall, cancellationToken, args);
101
=>
InvokeAsync
<TValue>(WindowObjectId, identifier, JSCallType.GetValue, cancellationToken, null);
117
return await
InvokeAsync
<TValue>(targetInstanceId, identifier, callType, cts.Token, args);
120
return await
InvokeAsync
<TValue>(targetInstanceId, identifier, callType, CancellationToken.None, args);