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]);