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