3 implementations of WatchConnectionsAsync
aspire (1)
Backchannel\AuxiliaryBackchannelMonitor.cs (1)
60public async IAsyncEnumerable<IReadOnlyList<IAppHostAuxiliaryBackchannel>> WatchConnectionsAsync([EnumeratorCancellation] CancellationToken cancellationToken = default)
Aspire.Cli.Tests (2)
Mcp\MockPackagingService.cs (1)
53public async IAsyncEnumerable<IReadOnlyList<IAppHostAuxiliaryBackchannel>> WatchConnectionsAsync([EnumeratorCancellation] CancellationToken cancellationToken = default)
TestServices\TestAuxiliaryBackchannelMonitor.cs (1)
37public async IAsyncEnumerable<IReadOnlyList<IAppHostAuxiliaryBackchannel>> WatchConnectionsAsync([EnumeratorCancellation] CancellationToken cancellationToken = default)
1 reference to WatchConnectionsAsync
aspire (1)
Commands\PsCommand.cs (1)
198await foreach (var connections in _backchannelMonitor.WatchConnectionsAsync(followCancellationToken).WithCancellation(followCancellationToken).ConfigureAwait(false))