3 implementations of Connections
aspire (1)
Backchannel\AuxiliaryBackchannelMonitor.cs (1)
55public IEnumerable<IAppHostAuxiliaryBackchannel> Connections =>
Aspire.Cli.Tests (2)
Mcp\MockPackagingService.cs (1)
45public IEnumerable<IAppHostAuxiliaryBackchannel> Connections => [];
TestServices\TestAuxiliaryBackchannelMonitor.cs (1)
17public IEnumerable<IAppHostAuxiliaryBackchannel> Connections =>
11 references to Connections
aspire (11)
Backchannel\AppHostConnectionHelper.cs (2)
31var connections = auxiliaryBackchannelMonitor.Connections.ToList(); 36connections = auxiliaryBackchannelMonitor.Connections.ToList();
Backchannel\AppHostConnectionResolver.cs (2)
68return backchannelMonitor.Connections.ToList(); 189return backchannelMonitor.Connections.ToList();
Backchannel\OrphanedAppHostCollector.cs (1)
30orphans = backchannelMonitor.Connections.Where(IsOrphaned).ToList();
Commands\PsCommand.cs (1)
171return _backchannelMonitor.Connections.ToList();
Commands\ResourceCommand.cs (2)
676return command._backchannelMonitor.Connections.Where(static connection => connection.IsInScope).ToList(); 712return command._backchannelMonitor.Connections
Mcp\Tools\ListAppHostsTool.cs (1)
45var connections = auxiliaryBackchannelMonitor.Connections.ToList();
Mcp\Tools\SelectAppHostTool.cs (2)
70var matchingConnection = auxiliaryBackchannelMonitor.Connections 84var availableAppHosts = auxiliaryBackchannelMonitor.Connections