Compartilhar via


PartialCachingAttribute.Duration Propriedade

Definição

Obtém a quantidade de tempo, em segundos, pela qual os itens armazenados em cache devem permanecer no cache de saída.

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

Valor da propriedade

Int32

A quantidade de tempo, em segundos, que um controle de usuário deve permanecer no cache de saída.

Exemplos

O exemplo de código a seguir demonstra como o PartialCachingAttribute(Int32) construtor pode ser aplicado a um controle de usuário. O atributo indica que o controle do usuário pode ser armazenado em cache e especifica uma duração de cache de 20 segundos. Este exemplo de código faz parte de um exemplo maior fornecido para a 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

Aplica-se a