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)
413dtos.Add(new InputDto(matchingInput.Name, responseAnswer.Value ?? "", matchingInput.InputType));
Aspire.Hosting.Tests (12)
InteractionServiceTests.cs (12)
301inputs: [new InputDto("Value", string.Empty, InputType.Text)]); 325inputs: [new InputDto("Value", string.Empty, InputType.Text)]); 348inputs: [new InputDto("Value", "not-in-options", InputType.Choice)]); 371inputs: [new InputDto("Value", "not-in-options", InputType.Choice)]); 392inputs: [new InputDto("Value", "one", InputType.Number)]); 415inputs: [new InputDto("Value", "maybe", InputType.Number)]); 450inputs: [new InputDto("Value", newValue, InputType.Text)]); 787new InputDto("Username", "testuser", InputType.Text), 788new InputDto("Password", "testpass", InputType.SecretText) 911inputs: [new InputDto("Username", "testuser", InputType.Text)]).DefaultTimeout(); 969new InputDto("Email", "test@example.com", InputType.Text), 970new 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)
394var dtos = new List<InputDto>();
Aspire.Hosting.Tests (1)
InteractionServiceTests.cs (1)
1046private static async Task CompleteInteractionAsync(InteractionService interactionService, int interactionId, InteractionCompletionState state, List<DashboardServiceData.InputDto>? inputs = null)