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