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