2 implementations of InvokeAsync
Microsoft.AspNetCore.Components.QuickGrid.Tests (1)
Microsoft.JSInterop (1)
6 references to InvokeAsync
Microsoft.JSInterop (6)
JSObjectReferenceExtensions.cs (5)
33/// consider using <see cref="IJSObjectReference.InvokeAsync{TValue}(string, CancellationToken, object[])" />.
64return jsObjectReference.InvokeAsync<TValue>(identifier, cancellationToken, args);
82await jsObjectReference.InvokeAsync<IJSVoidResult>(identifier, cancellationToken, args);
100return await jsObjectReference.InvokeAsync<TValue>(identifier, cancellationToken, args);
118await jsObjectReference.InvokeAsync<IJSVoidResult>(identifier, cancellationToken, args);