6 references to GetValue
Microsoft.JSInterop (6)
Implementation\JSInProcessObjectReference.cs (1)
52return _jsRuntime.Invoke<TValue>(identifier, Id, JSCallType.GetValue);
Implementation\JSObjectReference.cs (2)
73return _jsRuntime.InvokeAsync<TValue>(Id, identifier, JSCallType.GetValue, null); 81return _jsRuntime.InvokeAsync<TValue>(Id, identifier, JSCallType.GetValue, cancellationToken, null);
JSInProcessRuntime.cs (1)
37=> Invoke<TValue>(identifier, WindowObjectId, JSCallType.GetValue);
JSRuntime.cs (2)
97=> InvokeAsync<TValue>(WindowObjectId, identifier, JSCallType.GetValue, null); 101=> InvokeAsync<TValue>(WindowObjectId, identifier, JSCallType.GetValue, cancellationToken, null);