3 implementations of GetConnectionsByHash
aspire (1)
Backchannel\AuxiliaryBackchannelMonitor.cs (1)
63
public IEnumerable<IAppHostAuxiliaryBackchannel>
GetConnectionsByHash
(string hash) =>
Aspire.Cli.Tests (2)
Mcp\MockPackagingService.cs (1)
47
public IEnumerable<IAppHostAuxiliaryBackchannel>
GetConnectionsByHash
(string hash) => [];
TestServices\TestAuxiliaryBackchannelMonitor.cs (1)
20
public IEnumerable<IAppHostAuxiliaryBackchannel>
GetConnectionsByHash
(string hash) =>
2 references to GetConnectionsByHash
aspire (2)
Commands\AppHostLauncher.cs (2)
557
connection ??= backchannelMonitor.
GetConnectionsByHash
(expectedHash).FirstOrDefault()
558
?? legacyHashes.SelectMany(backchannelMonitor.
GetConnectionsByHash
).FirstOrDefault();