6 references to SetValue
Microsoft.JSInterop (6)
Implementation\JSInProcessObjectReference.cs (1)
61
_jsRuntime.Invoke<TValue>(identifier, Id, JSCallType.
SetValue
, value);
Implementation\JSObjectReference.cs (2)
89
await _jsRuntime.InvokeAsync<TValue>(Id, identifier, JSCallType.
SetValue
, [value]);
97
await _jsRuntime.InvokeAsync<TValue>(Id, identifier, JSCallType.
SetValue
, cancellationToken, [value]);
JSInProcessRuntime.cs (1)
42
=> Invoke<IJSVoidResult>(identifier, WindowObjectId, JSCallType.
SetValue
, value);
JSRuntime.cs (2)
105
=> await InvokeAsync<IJSVoidResult>(WindowObjectId, identifier, JSCallType.
SetValue
, [value]);
109
=> await InvokeAsync<IJSVoidResult>(WindowObjectId, identifier, JSCallType.
SetValue
, cancellationToken, [value]);