2 implementations of IsInScope
aspire (1)
Backchannel\AppHostAuxiliaryBackchannel.cs (1)
77
public bool
IsInScope
{ get; internal set; }
Aspire.Cli.Tests (1)
TestServices\TestAppHostAuxiliaryBackchannel.cs (1)
20
public bool
IsInScope
{ get; set; } = true;
9 references to IsInScope
aspire (8)
Backchannel\AppHostConnectionHelper.cs (1)
63
var inScopeConnections = connections.Where(c => c.
IsInScope
).ToList();
Backchannel\AppHostConnectionResolver.cs (2)
101
var inScopeConnections = connections.Where(c => c.
IsInScope
).ToList();
102
var outOfScopeConnections = connections.Where(c => !c.
IsInScope
).ToList();
Backchannel\AuxiliaryBackchannelMonitor.cs (1)
87
var inScopeConnections = connections.Where(c => c.
IsInScope
).ToList();
Commands\PsCommand.cs (1)
112
.OrderByDescending(c => c.
IsInScope
)
Commands\StopCommand.cs (1)
86
var 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)
64
var inScopeConnections = connections.Where(c => c.
IsInScope
).ToList();