5 implementations of SendInteractionRequestAsync
Aspire.Dashboard (1)
ServiceClient\DashboardClient.cs (1)
529public async Task SendInteractionRequestAsync(WatchInteractionsRequestUpdate request, CancellationToken cancellationToken)
Aspire.Dashboard.Components.Tests (2)
Controls\ApplicationNameTests.cs (1)
82public Task SendInteractionRequestAsync(WatchInteractionsRequestUpdate request, CancellationToken cancellationToken) => throw new NotImplementedException();
Shared\TestDashboardClient.cs (1)
118public async Task SendInteractionRequestAsync(WatchInteractionsRequestUpdate request, CancellationToken cancellationToken)
Aspire.Dashboard.Tests (2)
Integration\Playwright\Infrastructure\MockDashboardClient.cs (1)
59public Task SendInteractionRequestAsync(WatchInteractionsRequestUpdate request, CancellationToken cancellationToken)
ResourceOutgoingPeerResolverTests.cs (1)
230public Task SendInteractionRequestAsync(WatchInteractionsRequestUpdate request, CancellationToken cancellationToken) => throw new NotImplementedException();
4 references to SendInteractionRequestAsync
Aspire.Dashboard (4)
Components\Interactions\InteractionsProvider.cs (4)
149await DashboardClient.SendInteractionRequestAsync(request, _cts.Token).ConfigureAwait(false); 199await DashboardClient.SendInteractionRequestAsync(request, _cts.Token).ConfigureAwait(false); 217await DashboardClient.SendInteractionRequestAsync(request, _cts.Token).ConfigureAwait(false); 388await DashboardClient.SendInteractionRequestAsync(request, _cts.Token).ConfigureAwait(false);