3 implementations of IsInScope
aspire (1)
Backchannel\AppHostAuxiliaryBackchannel.cs (1)
82public bool IsInScope { get; internal set; }
Aspire.Cli.Tests (2)
Commands\TerminalCommandTests.cs (1)
675public bool IsInScope => _inner.IsInScope;
TestServices\TestAppHostAuxiliaryBackchannel.cs (1)
34public bool IsInScope { get; set; } = true;
11 references to IsInScope
aspire (11)
Backchannel\AppHostConnectionHelper.cs (1)
71var inScopeConnections = connections.Where(c => c.IsInScope).ToList();
Backchannel\AppHostConnectionResolver.cs (2)
200var inScopeConnections = connections.Where(c => c.IsInScope).ToList(); 201var outOfScopeConnections = connections.Where(c => !c.IsInScope).ToList();
Backchannel\AuxiliaryBackchannelMonitor.cs (1)
192var inScopeConnections = candidates.Where(c => c.IsInScope).ToList();
Commands\PsCommand.cs (2)
147.OrderByDescending(c => c.IsInScope) 323.OrderByDescending(c => c.IsInScope)
Commands\ResourceCommand.cs (1)
677return command._backchannelMonitor.Connections.Where(static connection => connection.IsInScope).ToList();
Commands\StopCommand.cs (2)
223var inScopeConnections = allConnections.Where(c => c.Connection!.IsInScope).ToArray(); 538return connection.IsInScope
Mcp\Tools\ListAppHostsTool.cs (2)
48.Where(c => c.IsInScope) 56.Where(c => !c.IsInScope)