8 references to InvokeAsync
Microsoft.JSInterop (8)
Implementation\JSObjectReference.cs (4)
41return _jsRuntime.InvokeAsync<TValue>(Id, identifier, JSCallType.FunctionCall, args); 57return _jsRuntime.InvokeAsync<IJSObjectReference>(Id, identifier, JSCallType.ConstructorCall, args); 73return _jsRuntime.InvokeAsync<TValue>(Id, identifier, JSCallType.GetValue, null); 89await _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.ConstructorCall, args); 97=> InvokeAsync<TValue>(WindowObjectId, identifier, JSCallType.GetValue, null); 105=> await InvokeAsync<IJSVoidResult>(WindowObjectId, identifier, JSCallType.SetValue, [value]);