3 implementations of InvokeAsync
Aspire.Dashboard.Tests (1)
Microsoft.AspNetCore.Components.Endpoints (1)
Microsoft.JSInterop (1)
6 references to InvokeAsync
Microsoft.JSInterop (6)
JSRuntimeExtensions.cs (5)
33/// consider using <see cref="IJSRuntime.InvokeAsync{TValue}(string, CancellationToken, object[])" />.
64return jsRuntime.InvokeAsync<TValue>(identifier, cancellationToken, args);
82await jsRuntime.InvokeAsync<IJSVoidResult>(identifier, cancellationToken, args);
100return await jsRuntime.InvokeAsync<TValue>(identifier, cancellationToken, args);
118await jsRuntime.InvokeAsync<IJSVoidResult>(identifier, cancellationToken, args);