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.Gets the amount of time, in seconds, that cached items should remain in the output cache.
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
A quantidade de tempo, em segundos, que um controle de usuário deve permanecer no cache de saída.The amount of time, in seconds, a user control should remain in the output cache.
Exemplos
O exemplo de código a seguir demonstra como o PartialCachingAttribute(Int32) Construtor pode ser aplicado a um controle de usuário.The following code example demonstrates how the PartialCachingAttribute(Int32) constructor can be applied to a user control. O atributo indica que o controle de usuário pode ser armazenado em cache e especifica uma duração de cache de 20 segundos.The attribute indicates that the user control can be cached and specifies a 20 second caching duration. Este exemplo de código faz parte de um exemplo maior fornecido para a PartialCachingAttribute classe.This code example is part of a larger example provided for the PartialCachingAttribute class.
// 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