2 implementations of IsInScope
aspire (1)
Backchannel\AppHostAuxiliaryBackchannel.cs (1)
77public bool IsInScope { get; internal set; }
Aspire.Cli.Tests (1)
TestServices\TestAppHostAuxiliaryBackchannel.cs (1)
20public bool IsInScope { get; set; } = true;
9 references to IsInScope
aspire (8)
Backchannel\AppHostConnectionHelper.cs (1)
63var inScopeConnections = connections.Where(c => c.IsInScope).ToList();
Backchannel\AppHostConnectionResolver.cs (2)
101var inScopeConnections = connections.Where(c => c.IsInScope).ToList(); 102var outOfScopeConnections = connections.Where(c => !c.IsInScope).ToList();
Backchannel\AuxiliaryBackchannelMonitor.cs (1)
87var inScopeConnections = connections.Where(c => c.IsInScope).ToList();
Commands\PsCommand.cs (1)
112.OrderByDescending(c => c.IsInScope)
Commands\StopCommand.cs (1)
86var displayPath = selectedConnection.IsInScope
Mcp\Tools\ListAppHostsTool.cs (2)
52.Where(c => c.IsInScope) 60.Where(c => !c.IsInScope)
Aspire.Cli.Tests (1)
TestServices\TestAuxiliaryBackchannelMonitor.cs (1)
64var inScopeConnections = connections.Where(c => c.IsInScope).ToList();