25 writes to MaxLength
Aspire.Hosting (4)
ApplicationModel\ResourceCommandService.cs (1)
814
MaxLength
= input.MaxLength
Ats\InteractionExports.cs (2)
269
MaxLength
= input.MaxLength,
320
MaxLength
= options?.MaxLength,
ParameterResourceBuilderExtensions.cs (1)
276
MaxLength
= options.MaxLength
Aspire.Hosting.Azure.Tests (1)
AzureEnvironmentResourceExtensionsTests.cs (1)
5009
MaxLength
= input.MaxLength
Aspire.Hosting.Tests (3)
Backchannel\AuxiliaryBackchannelRpcTargetTests.cs (1)
227
MaxLength
= 128,
InteractionServiceTests.cs (2)
522
var input = new InteractionInput { Name = "Value", Label = "Value", InputType = inputType,
MaxLength
= maxLength };
632
MaxLength
= length
Stress.AppHost (17)
CommandResources.cs (15)
210
MaxLength
= 80
305
MaxLength
= 80
583
MaxLength
= 100
657
MaxLength
= 100
666
MaxLength
= 100
792
MaxLength
= 100
801
MaxLength
= 200
830
MaxLength
= 500
839
MaxLength
= 100
848
MaxLength
= 100
878
MaxLength
= 100
888
MaxLength
= 200
898
MaxLength
= 200
1314
MaxLength
= 64
1346
MaxLength
= 64
InteractionCommands.cs (2)
239
new InteractionInput { Name = "Name", InputType = InputType.Text, Label = "Name", Placeholder = "Enter name", Required = true,
MaxLength
= 50 },
240
new InteractionInput { Name = "Password", InputType = InputType.SecretText, Label = "Password", Placeholder = "Enter password", Required = true,
MaxLength
= 20 },
10 references to MaxLength
Aspire.Hosting (7)
ApplicationModel\ResourceCommandService.cs (2)
621
var maxLength = InteractionHelpers.GetMaxLength(argument.
MaxLength
);
814
MaxLength = input.
MaxLength
Ats\InteractionExports.cs (1)
269
MaxLength = input.
MaxLength
,
Backchannel\AuxiliaryBackchannelRpcTarget.cs (1)
1381
MaxLength = input.
MaxLength
,
Dashboard\DashboardService.cs (2)
232
if (input.
MaxLength
!= null)
234
dto.MaxLength = input.
MaxLength
.Value;
InteractionService.cs (1)
594
var maxLength = InteractionHelpers.GetMaxLength(input.
MaxLength
);
Aspire.Hosting.Azure.Tests (1)
AzureEnvironmentResourceExtensionsTests.cs (1)
5009
MaxLength = input.
MaxLength
Aspire.Hosting.Tests (2)
AddParameterTests.cs (2)
629
[nameof(InteractionInput.
MaxLength
)] = 2
643
Assert.Equal(2, input.
MaxLength
);