7 instantiations of GetTerminalInfoResponse
aspire (1)
Backchannel\AppHostAuxiliaryBackchannel.cs (1)
1032
return new
GetTerminalInfoResponse
{ IsAvailable = false };
Aspire.Cli.Tests (6)
Commands\TerminalCommandTests.cs (5)
124
backchannel.TerminalInfoResponse = new
GetTerminalInfoResponse
149
backchannel.TerminalInfoResponse = new
GetTerminalInfoResponse
174
backchannel.TerminalInfoResponse = new
GetTerminalInfoResponse
224
bc.TerminalInfoResponse = new
GetTerminalInfoResponse
259
backchannel.TerminalInfoResponse = new
GetTerminalInfoResponse
TestServices\TestAppHostAuxiliaryBackchannel.cs (1)
351
public GetTerminalInfoResponse TerminalInfoResponse { get; set; } = new
GetTerminalInfoResponse
{ IsAvailable = false };
13 references to GetTerminalInfoResponse
aspire (9)
Backchannel\AppHostAuxiliaryBackchannel.cs (3)
1024
public async Task<
GetTerminalInfoResponse
> GetTerminalInfoAsync(string resourceName, CancellationToken cancellationToken = default)
1041
var
response = await rpc.InvokeWithCancellationAsync<
GetTerminalInfoResponse
>(
Backchannel\BackchannelJsonSerializerContext.cs (1)
103
[JsonSerializable(typeof(
GetTerminalInfoResponse
))]
Backchannel\IAppHostAuxiliaryBackchannel.cs (1)
196
Task<
GetTerminalInfoResponse
> GetTerminalInfoAsync(
Commands\TerminalAttachCommand.cs (1)
130
var
info = await _interactionService.ShowStatusAsync(
src\Aspire.Hosting\Backchannel\BackchannelDataTypes.cs (3)
56
/// <see cref="
GetTerminalInfoResponse
.Replicas"/> AND the per-resource list returned by
1599
/// <see cref="
GetTerminalInfoResponse
.Replicas"/> when the auxiliary backchannel reports
1652
/// primary peer. Falls back to <see cref="
GetTerminalInfoResponse
.Columns"/> when no peer has
Aspire.Cli.Tests (4)
Backchannel\AppHostAuxiliaryBackchannelTests.cs (1)
72
var
response = await backchannel.GetTerminalInfoAsync("frontend").DefaultTimeout();
Commands\TerminalCommandTests.cs (1)
681
public Task<
GetTerminalInfoResponse
> GetTerminalInfoAsync(string resourceName, CancellationToken cancellationToken = default)
TestServices\TestAppHostAuxiliaryBackchannel.cs (2)
351
public
GetTerminalInfoResponse
TerminalInfoResponse { get; set; } = new GetTerminalInfoResponse { IsAvailable = false };
353
public Task<
GetTerminalInfoResponse
> GetTerminalInfoAsync(string resourceName, CancellationToken cancellationToken = default)