7 implementations of SendInteractionRequestAsync
Aspire.Dashboard (2)
ServiceClient\DashboardClient.cs (1)
795public async Task SendInteractionRequestAsync(WatchInteractionsRequestUpdate request, CancellationToken cancellationToken)
ServiceClient\SelectedDashboardClient.cs (1)
55public Task SendInteractionRequestAsync(WatchInteractionsRequestUpdate request, CancellationToken cancellationToken)
Aspire.Dashboard.Components.Tests (1)
tests\Shared\TestDashboardClient.cs (1)
164public async Task SendInteractionRequestAsync(WatchInteractionsRequestUpdate request, CancellationToken cancellationToken)
Aspire.Dashboard.Tests (4)
Integration\Playwright\Infrastructure\MockDashboardClient.cs (1)
78public Task SendInteractionRequestAsync(WatchInteractionsRequestUpdate request, CancellationToken cancellationToken)
ResourceOutgoingPeerResolverTests.cs (1)
701public Task SendInteractionRequestAsync(WatchInteractionsRequestUpdate request, CancellationToken cancellationToken) => throw new NotImplementedException();
Terminal\DefaultTerminalConnectionResolverTests.cs (1)
159public Task SendInteractionRequestAsync(WatchInteractionsRequestUpdate request, CancellationToken cancellationToken) => throw new NotImplementedException();
tests\Shared\TestDashboardClient.cs (1)
164public async Task SendInteractionRequestAsync(WatchInteractionsRequestUpdate request, CancellationToken cancellationToken)
6 references to SendInteractionRequestAsync
Aspire.Dashboard (5)
Components\Interactions\InteractionsProvider.cs (5)
191await DashboardClient.SendInteractionRequestAsync(request, _cts.Token).ConfigureAwait(false); 245await DashboardClient.SendInteractionRequestAsync(request, _cts.Token).ConfigureAwait(false); 266await DashboardClient.SendInteractionRequestAsync(request, _cts.Token).ConfigureAwait(false); 304await DashboardClient.SendInteractionRequestAsync(request, _cts.Token).ConfigureAwait(false); 513await DashboardClient.SendInteractionRequestAsync(request, _cts.Token).ConfigureAwait(false);
Aspire.Dashboard.Components.Tests (1)
Interactions\InteractionsProviderTests.cs (1)
126await cut.Instance.DashboardClient.SendInteractionRequestAsync(request, CancellationToken.None);