PartialCachingAttribute.VaryByCustom Propriedade
Definição
Obtém uma lista de cadeias de caracteres personalizadas que o cache de saída usará para variar o controle de usuário.Gets a list of custom strings that the output cache will use to vary the user control.
public:
property System::String ^ VaryByCustom { System::String ^ get(); };
public:
property System::String ^ VaryByCustom { System::String ^ get(); void set(System::String ^ value); };
public string VaryByCustom { get; }
public string VaryByCustom { get; set; }
member this.VaryByCustom : string
member this.VaryByCustom : string with get, set
Public ReadOnly Property VaryByCustom As String
Public Property VaryByCustom As String
Valor da propriedade
A lista de cadeias de caracteres personalizadas.The list of custom strings.
Exemplos
O exemplo de código a seguir demonstra como o PartialCachingAttribute(Int32, String, String, String) Construtor pode ser aplicado a um controle de usuário.The following code example demonstrates how the PartialCachingAttribute(Int32, String, String, String) constructor can be applied to a user control. No exemplo, o construtor é usado para indicar que o controle de usuário pode ser armazenado em cache e especificar que a entrada de cache depende do tipo de navegador e número de versão principal.In the example, the constructor is used to indicate that the user control can be cached and to specify that the cache entry is dependent on the browser type and major version number.
// Set the PartialCachingAttribute.Duration property to
// 20 seconds and the PartialCachingAttribute.VaryByCustom
// property to browser.
[PartialCaching(20, null, null, "browser")]
public partial class ctlSelect : UserControl
' Set the PartialCachingAttribute.Duration property to
' 20 seconds and the PartialCachingAttribute.VaryByCustom
' property to browser.
<PartialCaching(20, Nothing, Nothing, "browser")> _
Public Class ctlSelect
Inherits UserControl
Comentários
Se você especificar "navegador" para essa propriedade, o controle de usuário será variado por tipo de navegador e número de versão principal.If you specify "browser" for this property, the user control will be varied by browser type and major version number. Você também pode usar essa propriedade para estender os valores que o cache de saída varia de acordo com a resposta de controle de usuário.You can also use this property to extend the values that output cache varies the user control response.