7 implementations of SendInteractionRequestAsync
Aspire.Dashboard (2)
ServiceClient\DashboardClient.cs (1)
799
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)
169
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)
169
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);
219
await DashboardClient.
SendInteractionRequestAsync
(request, _cts.Token).ConfigureAwait(false);
238
await DashboardClient.
SendInteractionRequestAsync
(request, _cts.Token).ConfigureAwait(false);
277
await DashboardClient.
SendInteractionRequestAsync
(request, _cts.Token).ConfigureAwait(false);
528
await DashboardClient.
SendInteractionRequestAsync
(request, _cts.Token).ConfigureAwait(false);
Aspire.Dashboard.Components.Tests (1)
Interactions\InteractionsProviderTests.cs (1)
128
await cut.Instance.DashboardClient.
SendInteractionRequestAsync
(request, CancellationToken.None);