7 writes to IsAvailable
aspire (1)
Backchannel\AppHostAuxiliaryBackchannel.cs (1)
1032return new GetTerminalInfoResponse { IsAvailable = false };
Aspire.Cli.Tests (6)
Commands\TerminalCommandTests.cs (5)
126IsAvailable = false, 151IsAvailable = true, 176IsAvailable = true, 226IsAvailable = false 261IsAvailable = true,
TestServices\TestAppHostAuxiliaryBackchannel.cs (1)
351public GetTerminalInfoResponse TerminalInfoResponse { get; set; } = new GetTerminalInfoResponse { IsAvailable = false };
4 references to IsAvailable
aspire (3)
Backchannel\AppHostAuxiliaryBackchannel.cs (1)
1047resourceName, response.IsAvailable, response.Replicas?.Length ?? 0);
Commands\TerminalAttachCommand.cs (1)
134if (!info.IsAvailable || info.Replicas is null || info.Replicas.Length == 0)
src\Aspire.Hosting\Backchannel\BackchannelDataTypes.cs (1)
1708/// Gets the per-replica endpoint information when <see cref="IsAvailable"/> is true.
Aspire.Cli.Tests (1)
Backchannel\AppHostAuxiliaryBackchannelTests.cs (1)
74Assert.False(response.IsAvailable);