6 writes to Label
Aspire.Hosting (1)
ApplicationModel\InteractionService.cs (1)
105
return await PromptInputAsync(title, message, new InteractionInput { InputType = InputType.Text,
Label
= inputLabel, Required = true, Placeholder = placeHolder }, options, cancellationToken).ConfigureAwait(false);
Stress.AppHost (5)
Program.cs (5)
193
new InteractionInput { InputType = InputType.Text,
Label
= "Name", Placeholder = "Enter name", Required = true },
194
new InteractionInput { InputType = InputType.Password,
Label
= "Password", Placeholder = "Enter password", Required = true },
195
new InteractionInput { InputType = InputType.Select,
Label
= "Dinner", Placeholder = "Select dinner", Required = true, Options =
214
new InteractionInput { InputType = InputType.Number,
Label
= "Number of people", Placeholder = "Enter number of people", Value = "2", Required = true },
215
new InteractionInput { InputType = InputType.Checkbox,
Label
= "Remember me", Placeholder = "What does this do?", Required = true },
4 references to Label
Aspire.Hosting (2)
Dashboard\DashboardService.cs (2)
116
if (input.
Label
!= null)
118
dto.Label = input.
Label
;
Stress.AppHost (2)
Program.cs (2)
184
logger.LogInformation("Input: {Label} = {Value}", input.
Label
, input.Value);
229
logger.LogInformation("Input: {Label} = {Value}", updatedInput.
Label
, updatedInput.Value);