IISServerOptions.MaxRequestBodySize 属性

定义

获取或设置任何请求正文允许的最大大小(以字节为单位)。 如果设置为 null,则最大请求长度不会在 ASP.NET Core中受到限制。 但是,默认情况下,IIS maxAllowedContentLength 仍将限制内容长度请求 (30,000,000) 。 此限制对升级的连接没有影响,这些连接始终不受限制。 这可以通过 按请求 IHttpMaxRequestBodySizeFeature重写。

public:
 property Nullable<long> MaxRequestBodySize { Nullable<long> get(); void set(Nullable<long> value); };
public long? MaxRequestBodySize { get; set; }
member this.MaxRequestBodySize : Nullable<int64> with get, set
Public Property MaxRequestBodySize As Nullable(Of Long)

属性值

注解

默认为 30,000,000 字节 (~28.6 MB) 。

适用于