5 implementations of SubscribeInteractionsAsync
Aspire.Dashboard (1)
ServiceClient\DashboardClient.cs (1)
601
public IAsyncEnumerable<WatchInteractionsResponseUpdate>
SubscribeInteractionsAsync
(CancellationToken cancellationToken)
Aspire.Dashboard.Components.Tests (2)
Controls\ApplicationNameTests.cs (1)
84
public IAsyncEnumerable<WatchInteractionsResponseUpdate>
SubscribeInteractionsAsync
(CancellationToken cancellationToken) => throw new NotImplementedException();
Shared\TestDashboardClient.cs (1)
98
public IAsyncEnumerable<WatchInteractionsResponseUpdate>
SubscribeInteractionsAsync
(CancellationToken cancellationToken)
Aspire.Dashboard.Tests (2)
Integration\Playwright\Infrastructure\MockDashboardClient.cs (1)
54
public IAsyncEnumerable<WatchInteractionsResponseUpdate>
SubscribeInteractionsAsync
(CancellationToken cancellationToken)
ResourceOutgoingPeerResolverTests.cs (1)
232
public IAsyncEnumerable<WatchInteractionsResponseUpdate>
SubscribeInteractionsAsync
(CancellationToken cancellationToken) => throw new NotImplementedException();
5 references to SubscribeInteractionsAsync
Aspire.Dashboard (1)
Components\Interactions\InteractionsProvider.cs (1)
271
var interactions = DashboardClient.
SubscribeInteractionsAsync
(_cts.Token);
Aspire.Dashboard.Tests (4)
Model\DashboardClientTests.cs (4)
162
var subscription = client.
SubscribeInteractionsAsync
(CancellationToken.None);
189
var subscription = client.
SubscribeInteractionsAsync
(CancellationToken.None);
214
Assert.Throws<ObjectDisposedException>(() => client.
SubscribeInteractionsAsync
(CancellationToken.None));
226
_ = client.
SubscribeInteractionsAsync
(CancellationToken.None);