ChunkedCookieHandlerElement.ChunkSize 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置处理程序的区块大小。
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。
表示 chunkSize
chunkedCookieHandler> 元素的< 属性。