3 implementations of IsInScope
aspire (1)
Backchannel\AppHostAuxiliaryBackchannel.cs (1)
84
public bool
IsInScope
{ get; internal set; }
Aspire.Cli.Tests (2)
Commands\TerminalCommandTests.cs (1)
674
public bool
IsInScope
=> _inner.IsInScope;
TestServices\TestAppHostAuxiliaryBackchannel.cs (1)
23
public bool
IsInScope
{ get; set; } = true;
12 references to IsInScope
aspire (11)
Backchannel\AppHostConnectionHelper.cs (1)
63
var inScopeConnections = connections.Where(c => c.
IsInScope
).ToList();
Backchannel\AppHostConnectionResolver.cs (2)
199
var inScopeConnections = connections.Where(c => c.
IsInScope
).ToList();
200
var outOfScopeConnections = connections.Where(c => !c.
IsInScope
).ToList();
Backchannel\AuxiliaryBackchannelMonitor.cs (1)
171
var inScopeConnections = connections.Where(c => c.
IsInScope
).ToList();
Commands\PsCommand.cs (2)
147
.OrderByDescending(c => c.
IsInScope
)
323
.OrderByDescending(c => c.
IsInScope
)
Commands\ResourceCommand.cs (1)
676
return command._backchannelMonitor.Connections.Where(static connection => connection.
IsInScope
).ToList();
Commands\StopCommand.cs (2)
222
var inScopeConnections = allConnections.Where(c => c.Connection!.
IsInScope
).ToArray();
546
return 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)
86
var inScopeConnections = connections.Where(c => c.
IsInScope
).ToList();