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;
10 references to IsInScope
aspire (9)
Backchannel\AppHostConnectionHelper.cs (1)
63var inScopeConnections = connections.Where(c => c.IsInScope).ToList();
Backchannel\AppHostConnectionResolver.cs (2)
130var inScopeConnections = connections.Where(c => c.IsInScope).ToList(); 131var outOfScopeConnections = connections.Where(c => !c.IsInScope).ToList();
Backchannel\AuxiliaryBackchannelMonitor.cs (1)
87var inScopeConnections = connections.Where(c => c.IsInScope).ToList();
Commands\PsCommand.cs (1)
129.OrderByDescending(c => c.IsInScope)
Commands\StopCommand.cs (2)
109var inScopeConnections = allConnections.Where(c => c.Connection!.IsInScope).ToArray(); 186var displayPath = 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)
64var inScopeConnections = connections.Where(c => c.IsInScope).ToList();