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