ChunkedCookieHandlerElement.ChunkSize 属性

定义

获取或设置处理程序的区块大小。

public:
 property int ChunkSize { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("chunkSize", DefaultValue=2000, IsRequired=false)]
[System.Configuration.IntegerValidator(MinValue=1000)]
public int ChunkSize { get; set; }
[<System.Configuration.ConfigurationProperty("chunkSize", DefaultValue=2000, IsRequired=false)>]
[<System.Configuration.IntegerValidator(MinValue=1000)>]
member this.ChunkSize : int with get, set
Public Property ChunkSize As Integer

属性值

区块的大小,以字节为单位。 默认值为 DefaultChunkSize。 设置的值不要小于 MinimumChunkSize 定义的最小块区值。

属性

注解

调整区块大小时必须小心。 Web 浏览器对 Cookie 的大小以及允许的 Cookie 总数和每个域的 Cookie 数有不同的限制。 例如,原始 Netscape 规范指定了以下限制:总共 300 个 Cookie,每个 cookie 标头 (4096 字节,包括元数据,而不仅仅是 cookie 值) ,每个域 20 个 Cookie。 有关详细信息,请参阅 ChunkedCookieHandler

表示 chunkSizechunkedCookieHandler> 元素的< 属性。

适用于

另请参阅