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