PartialCachingAttribute.Duration 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取缓存项应保留在输出缓存中的时间(以秒为单位)。
public:
property int Duration { int get(); };
public:
property int Duration { int get(); void set(int value); };
public int Duration { get; }
public int Duration { get; set; }
member this.Duration : int
member this.Duration : int with get, set
Public ReadOnly Property Duration As Integer
Public Property Duration As Integer
属性值
用户控件应保留在输出缓存中的时间(以秒为单位)。
示例
下面的代码示例演示如何将 PartialCachingAttribute(Int32) 构造函数应用于用户控件。 属性指示可以缓存用户控件,并指定 20 秒的缓存持续时间。 此代码示例是为 PartialCachingAttribute 类提供的一个更大示例的一部分。
// Set the PartialCachingAttribute.Duration property to 20 seconds.
[PartialCaching(20)]
public partial class ctlMine : UserControl
' Set the PartialCachingAttribute.Duration property to 20 seconds.
<PartialCaching(20)> _
Partial Class ctlMine
Inherits UserControl