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