1 implementation of InvokeAsync
Microsoft.JSInterop (1)
Implementation\JSObjectReference.cs (1)
36public ValueTask<TValue> InvokeAsync<[DynamicallyAccessedMembers(JsonSerialized)] TValue>(string identifier, object?[]? args)
2 references to InvokeAsync
Microsoft.JSInterop (2)
JSObjectReferenceExtensions.cs (2)
26await jsObjectReference.InvokeAsync<IJSVoidResult>(identifier, args); 45return jsObjectReference.InvokeAsync<TValue>(identifier, args);