| File: IHttpMaxRequestBodySizeFeature.cs | Web Access |
| Project: src\aspnetcore\src\Http\Http.Features\src\Microsoft.AspNetCore.Http.Features.csproj (Microsoft.AspNetCore.Http.Features) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.AspNetCore.Http.Features; /// <summary> /// Feature to inspect and modify the maximum request body size for a single request. /// </summary> public interface IHttpMaxRequestBodySizeFeature { /// <summary> /// Indicates whether <see cref="MaxRequestBodySize"/> is read-only. /// If true, this could mean that the request body has already been read from /// or that <see cref="IHttpUpgradeFeature.UpgradeAsync"/> was called. /// </summary> bool IsReadOnly { get; } /// <summary> /// The maximum allowed size of the current request body in bytes. /// When set to null, the maximum request body size is unlimited. /// This cannot be modified after the reading the request body has started. /// This limit does not affect upgraded connections which are always unlimited. /// </summary> /// <remarks> /// Defaults to the server's global max request body size limit. /// </remarks> long? MaxRequestBodySize { get; set; } }