3 implementations of IsInScope
aspire (1)
Backchannel\AppHostAuxiliaryBackchannel.cs (1)
84public bool IsInScope { get; internal set; }
Aspire.Cli.Tests (2)
Commands\TerminalCommandTests.cs (1)
674public bool IsInScope => _inner.IsInScope;
TestServices\TestAppHostAuxiliaryBackchannel.cs (1)
23public bool IsInScope { get; set; } = true;
12 references to IsInScope
aspire (11)
Backchannel\AppHostConnectionHelper.cs (1)
63var inScopeConnections = connections.Where(c => c.IsInScope).ToList();
Backchannel\AppHostConnectionResolver.cs (2)
199var inScopeConnections = connections.Where(c => c.IsInScope).ToList(); 200var outOfScopeConnections = connections.Where(c => !c.IsInScope).ToList();
Backchannel\AuxiliaryBackchannelMonitor.cs (1)
171var inScopeConnections = connections.Where(c => c.IsInScope).ToList();
Commands\PsCommand.cs (2)
147.OrderByDescending(c => c.IsInScope) 323.OrderByDescending(c => c.IsInScope)
Commands\ResourceCommand.cs (1)
676return command._backchannelMonitor.Connections.Where(static connection => connection.IsInScope).ToList();
Commands\StopCommand.cs (2)
222var inScopeConnections = allConnections.Where(c => c.Connection!.IsInScope).ToArray(); 546return connection.IsInScope
Mcp\Tools\ListAppHostsTool.cs (2)
48.Where(c => c.IsInScope) 56.Where(c => !c.IsInScope)
Aspire.Cli.Tests (1)
TestServices\TestAuxiliaryBackchannelMonitor.cs (1)
86var inScopeConnections = connections.Where(c => c.IsInScope).ToList();