3 writes to ValueLengthLimit
Microsoft.AspNetCore.Http (1)
Internal\MutableFormOptionsMetadata.cs (1)
16ValueLengthLimit = ValueLengthLimit ?? baseFormOptions.ValueLengthLimit,
Microsoft.AspNetCore.Mvc.Core (1)
RequestFormLimitsAttribute.cs (1)
110set => FormOptions.ValueLengthLimit = value;
Microsoft.AspNetCore.Routing.Tests (1)
EndpointRoutingMiddlewareFormOptionsTest.cs (1)
99options.ValueLengthLimit = 45;
5 references to ValueLengthLimit
Microsoft.AspNetCore.Http (2)
Features\FormFeature.cs (1)
219ValueLengthLimit = _options.ValueLengthLimit,
Internal\MutableFormOptionsMetadata.cs (1)
16ValueLengthLimit = ValueLengthLimit ?? baseFormOptions.ValueLengthLimit,
Microsoft.AspNetCore.Mvc.Core (1)
RequestFormLimitsAttribute.cs (1)
109get => FormOptions.ValueLengthLimit;
Microsoft.AspNetCore.Routing.Tests (2)
EndpointRoutingMiddlewareFormOptionsTest.cs (2)
85Assert.Equal(45, formOptions.ValueLengthLimit); 123Assert.Equal(45, formOptions.ValueLengthLimit);