2 writes to MultipartBoundaryLengthLimit
Microsoft.AspNetCore.Http (1)
Internal\MutableFormOptionsMetadata.cs (1)
17MultipartBoundaryLengthLimit = MultipartBoundaryLengthLimit ?? baseFormOptions.MultipartBoundaryLengthLimit,
Microsoft.AspNetCore.Mvc.Core (1)
RequestFormLimitsAttribute.cs (1)
122set => FormOptions.MultipartBoundaryLengthLimit = value;
5 references to MultipartBoundaryLengthLimit
Microsoft.AspNetCore.Http (3)
Features\FormFeature.cs (1)
228var boundary = GetBoundary(contentType, _options.MultipartBoundaryLengthLimit);
Features\FormOptions.cs (1)
28/// Default value for <see cref="MultipartBoundaryLengthLimit"/>.
Internal\MutableFormOptionsMetadata.cs (1)
17MultipartBoundaryLengthLimit = MultipartBoundaryLengthLimit ?? baseFormOptions.MultipartBoundaryLengthLimit,
Microsoft.AspNetCore.Mvc.Core (1)
RequestFormLimitsAttribute.cs (1)
121get => FormOptions.MultipartBoundaryLengthLimit;
Microsoft.AspNetCore.Mvc.Core.Test (1)
RequestFormLimitsAttributeTest.cs (1)
76Assert.Equal(0, requestFormLimitsAttribute.FormOptions.MultipartBoundaryLengthLimit);