2 implementations of InvokeAsync
Microsoft.AspNetCore.Components.QuickGrid.Tests (1)
GridRaceConditionTest.cs (1)
184public ValueTask<TValue> InvokeAsync<TValue>(string identifier, object[] args)
Microsoft.JSInterop (1)
Implementation\JSObjectReference.cs (1)
37public 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);