10 references to InvokeAsync
Microsoft.JSInterop (10)
Implementation\JSObjectReference.cs (6)
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); 89await _jsRuntime.InvokeAsync<TValue>(Id, identifier, JSCallType.SetValue, [value]); 97await _jsRuntime.InvokeAsync<TValue>(Id, identifier, JSCallType.SetValue, [value]);
JSRuntime.cs (4)
71=> InvokeAsync<TValue>(WindowObjectId, identifier, JSCallType.FunctionCall, args); 89=> InvokeAsync<IJSObjectReference>(WindowObjectId, identifier, JSCallType.NewCall, args); 97=> InvokeAsync<TValue>(WindowObjectId, identifier, JSCallType.GetValue, null); 105=> await InvokeAsync<IJSVoidResult>(WindowObjectId, identifier, JSCallType.SetValue, [value]);