1 write to _jsRuntime
Microsoft.JSInterop (1)
Implementation\JSObjectReference.cs (1)
31
_jsRuntime
= jsRuntime;
9 references to _jsRuntime
Microsoft.JSInterop (9)
Implementation\JSObjectReference.cs (9)
41
return
_jsRuntime
.InvokeAsync<TValue>(Id, identifier, JSCallType.FunctionCall, args);
49
return
_jsRuntime
.InvokeAsync<TValue>(Id, identifier, JSCallType.FunctionCall, cancellationToken, args);
57
return
_jsRuntime
.InvokeAsync<IJSObjectReference>(Id, identifier, JSCallType.NewCall, args);
65
return
_jsRuntime
.InvokeAsync<IJSObjectReference>(Id, identifier, JSCallType.NewCall, cancellationToken, args);
73
return
_jsRuntime
.InvokeAsync<TValue>(Id, identifier, JSCallType.GetValue, null);
81
return
_jsRuntime
.InvokeAsync<TValue>(Id, identifier, JSCallType.GetValue, null);
89
await
_jsRuntime
.InvokeAsync<TValue>(Id, identifier, JSCallType.SetValue, [value]);
97
await
_jsRuntime
.InvokeAsync<TValue>(Id, identifier, JSCallType.SetValue, [value]);
107
await
_jsRuntime
.InvokeVoidAsync("DotNet.disposeJSObjectReferenceById", Id);