7 references to InvokeAsync
Microsoft.JSInterop (7)
Implementation\JSObjectReference.cs (4)
41return _jsRuntime.InvokeAsync<TValue>(Id, identifier, JSCallType.FunctionCall, args); 57return _jsRuntime.InvokeAsync<IJSObjectReference>(Id, identifier, JSCallType.NewCall, args); 73return _jsRuntime.InvokeAsync<TValue>(Id, identifier, JSCallType.GetValue, null); 81return _jsRuntime.InvokeAsync<TValue>(Id, identifier, JSCallType.GetValue, null);
JSRuntime.cs (3)
71=> InvokeAsync<TValue>(WindowObjectId, identifier, JSCallType.FunctionCall, args); 89=> InvokeAsync<IJSObjectReference>(WindowObjectId, identifier, JSCallType.NewCall, args); 97=> InvokeAsync<TValue>(WindowObjectId, identifier, JSCallType.GetValue, null);