PartialCachingAttribute.Duration Propriété

Définition

Obtient la période, en secondes, pendant laquelle les éléments mis en cache doivent rester dans le cache de sortie.

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

Valeur de propriété

Int32

Durée, en secondes, pendant laquelle un contrôle utilisateur doit rester dans le cache de sortie.

Exemples

L’exemple de code suivant montre comment le PartialCachingAttribute(Int32) constructeur peut être appliqué à un contrôle utilisateur. L’attribut indique que le contrôle utilisateur peut être mis en cache et spécifie une durée de mise en cache de 20 secondes. Cet exemple de code fait partie d’un exemple plus grand fourni pour la PartialCachingAttribute classe.

// 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

S’applique à