3 implementations of WatchConnectionsAsync
aspire (1)
Backchannel\AuxiliaryBackchannelMonitor.cs (1)
66public async IAsyncEnumerable<IReadOnlyList<IAppHostAuxiliaryBackchannel>> WatchConnectionsAsync([EnumeratorCancellation] CancellationToken cancellationToken = default)
Aspire.Cli.Tests (2)
Mcp\MockPackagingService.cs (1)
55public async IAsyncEnumerable<IReadOnlyList<IAppHostAuxiliaryBackchannel>> WatchConnectionsAsync([EnumeratorCancellation] CancellationToken cancellationToken = default)
TestServices\TestAuxiliaryBackchannelMonitor.cs (1)
41public 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))