2 implementations of TryReadChannel
aspire (1)
Acquisition\IdentityChannelReader.cs (1)
81public bool TryReadChannel([NotNullWhen(true)] out string? channel, [NotNullWhen(false)] out string? error)
Aspire.Cli.Tests (1)
TestServices\FakeIdentityChannelReader.cs (1)
31public bool TryReadChannel([NotNullWhen(true)] out string? channel, [NotNullWhen(false)] out string? error)
3 references to TryReadChannel
aspire (2)
Acquisition\InstallationDiscovery.cs (1)
410if (_channelReader.TryReadChannel(out var channel, out var error))
Utils\EnvironmentChecker\AspireVersionCheck.cs (1)
208if (identityChannelReader.TryReadChannel(out var channel, out var error))
Aspire.Cli.Tests (1)
CliBootstrapTests.cs (1)
95Assert.True(reader.TryReadChannel(out var channel, out _));