SessionStateSection.CompressionEnabled 属性

定义

获取或设置一个值,该值指示是否对会话状态数据启用压缩。

public:
 property bool CompressionEnabled { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("compressionEnabled", DefaultValue=false)]
public bool CompressionEnabled { get; set; }
[<System.Configuration.ConfigurationProperty("compressionEnabled", DefaultValue=false)>]
member this.CompressionEnabled : bool with get, set
Public Property CompressionEnabled As Boolean

属性值

Boolean

如果启用压缩,则为 true;否则为 false。 默认值为 false

属性

注解

CompressionEnabled当值设置为true时,ASP.NET 使用该GZipStream类来压缩和扩展会话状态数据。

适用于