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