5 instantiations of ExecuteResourceCommandResponse
Aspire.Cli.Tests (5)
Mcp\ExecuteResourceCommandToolTests.cs (4)
46ExecuteResourceCommandResult = new ExecuteResourceCommandResponse { Success = true } 69ExecuteResourceCommandResult = new ExecuteResourceCommandResponse 91ExecuteResourceCommandResult = new ExecuteResourceCommandResponse 113ExecuteResourceCommandResult = new ExecuteResourceCommandResponse { Success = true }
TestServices\TestAppHostAuxiliaryBackchannel.cs (1)
103public ExecuteResourceCommandResponse ExecuteResourceCommandResult { get; set; } = new ExecuteResourceCommandResponse { Success = true };
11 references to ExecuteResourceCommandResponse
aspire (9)
Backchannel\AppHostAuxiliaryBackchannel.cs (3)
711public async Task<ExecuteResourceCommandResponse> ExecuteResourceCommandAsync( 726var response = await rpc.InvokeWithCancellationAsync<ExecuteResourceCommandResponse>(
Backchannel\BackchannelJsonSerializerContext.cs (1)
77[JsonSerializable(typeof(ExecuteResourceCommandResponse))]
Backchannel\IAppHostAuxiliaryBackchannel.cs (1)
118Task<ExecuteResourceCommandResponse> ExecuteResourceCommandAsync(
Commands\ResourceCommandHelper.cs (3)
42var response = await interactionService.ShowStatusAsync( 62var response = await interactionService.ShowStatusAsync( 85ExecuteResourceCommandResponse response,
Mcp\Tools\ExecuteResourceCommandTool.cs (1)
73var response = await connection.ExecuteResourceCommandAsync(resourceName, commandName, cancellationToken).ConfigureAwait(false);
Aspire.Cli.Tests (2)
TestServices\TestAppHostAuxiliaryBackchannel.cs (2)
103public ExecuteResourceCommandResponse ExecuteResourceCommandResult { get; set; } = new ExecuteResourceCommandResponse { Success = true }; 105public Task<ExecuteResourceCommandResponse> ExecuteResourceCommandAsync(