7 instantiations of GetTerminalInfoResponse
aspire (1)
Backchannel\AppHostAuxiliaryBackchannel.cs (1)
1032return new GetTerminalInfoResponse { IsAvailable = false };
Aspire.Cli.Tests (6)
Commands\TerminalCommandTests.cs (5)
124backchannel.TerminalInfoResponse = new GetTerminalInfoResponse 149backchannel.TerminalInfoResponse = new GetTerminalInfoResponse 174backchannel.TerminalInfoResponse = new GetTerminalInfoResponse 224bc.TerminalInfoResponse = new GetTerminalInfoResponse 259backchannel.TerminalInfoResponse = new GetTerminalInfoResponse
TestServices\TestAppHostAuxiliaryBackchannel.cs (1)
351public GetTerminalInfoResponse TerminalInfoResponse { get; set; } = new GetTerminalInfoResponse { IsAvailable = false };
13 references to GetTerminalInfoResponse
aspire (9)
Backchannel\AppHostAuxiliaryBackchannel.cs (3)
1024public async Task<GetTerminalInfoResponse> GetTerminalInfoAsync(string resourceName, CancellationToken cancellationToken = default) 1041var response = await rpc.InvokeWithCancellationAsync<GetTerminalInfoResponse>(
Backchannel\BackchannelJsonSerializerContext.cs (1)
103[JsonSerializable(typeof(GetTerminalInfoResponse))]
Backchannel\IAppHostAuxiliaryBackchannel.cs (1)
196Task<GetTerminalInfoResponse> GetTerminalInfoAsync(
Commands\TerminalAttachCommand.cs (1)
130var 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)
72var response = await backchannel.GetTerminalInfoAsync("frontend").DefaultTimeout();
Commands\TerminalCommandTests.cs (1)
681public Task<GetTerminalInfoResponse> GetTerminalInfoAsync(string resourceName, CancellationToken cancellationToken = default)
TestServices\TestAppHostAuxiliaryBackchannel.cs (2)
351public GetTerminalInfoResponse TerminalInfoResponse { get; set; } = new GetTerminalInfoResponse { IsAvailable = false }; 353public Task<GetTerminalInfoResponse> GetTerminalInfoAsync(string resourceName, CancellationToken cancellationToken = default)