14 instantiations of InputDto
Aspire.Hosting (2)
Dashboard\DashboardServiceData.cs (1)
179request.InputsDialog.InputItems.Select(i => new InputDto(i.Name, i.Value, DashboardService.MapInputType(i.InputType))).ToList(),
Pipelines\PipelineActivityReporter.cs (1)
401dtos.Add(new InputDto(matchingInput.Name, responseAnswer.Value ?? "", matchingInput.InputType));
Aspire.Hosting.Tests (12)
InteractionServiceTests.cs (12)
300inputs: [new InputDto("Value", string.Empty, InputType.Text)]); 324inputs: [new InputDto("Value", string.Empty, InputType.Text)]); 347inputs: [new InputDto("Value", "not-in-options", InputType.Choice)]); 370inputs: [new InputDto("Value", "not-in-options", InputType.Choice)]); 391inputs: [new InputDto("Value", "one", InputType.Number)]); 414inputs: [new InputDto("Value", "maybe", InputType.Number)]); 449inputs: [new InputDto("Value", newValue, InputType.Text)]); 786new InputDto("Username", "testuser", InputType.Text), 787new InputDto("Password", "testpass", InputType.SecretText) 910inputs: [new InputDto("Username", "testuser", InputType.Text)]).DefaultTimeout(); 968new InputDto("Email", "test@example.com", InputType.Text), 969new InputDto("Age", "25", InputType.Number)
4 references to InputDto
Aspire.Hosting (3)
Dashboard\DashboardServiceData.cs (2)
194public static void ProcessInputs(IServiceProvider serviceProvider, ILogger logger, Interaction.InputsInteractionInfo inputsInfo, List<InputDto> inputDtos, bool dependencyChange, CancellationToken cancellationToken) 200var requestInput = inputDtos[i];
Pipelines\PipelineActivityReporter.cs (1)
382var dtos = new List<InputDto>();
Aspire.Hosting.Tests (1)
InteractionServiceTests.cs (1)
1045private static async Task CompleteInteractionAsync(InteractionService interactionService, int interactionId, InteractionCompletionState state, List<DashboardServiceData.InputDto>? inputs = null)