OutputCacheProfile.VaryByCustom Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém ou define a propriedade VaryByCustom.
public:
property System::String ^ VaryByCustom { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("varyByCustom")]
public string VaryByCustom { get; set; }
[<System.Configuration.ConfigurationProperty("varyByCustom")>]
member this.VaryByCustom : string with get, set
Public Property VaryByCustom As String
Valor da propriedade
O valor VaryByCustom.
- Atributos
Exemplos
O exemplo de código a seguir mostra como usar a VaryByCustom propriedade .
// Get the current VaryByCustom.
String varyByCustomValue =
outputCacheProfile.VaryByCustom;
// Set the VaryByCustom.
outputCacheProfile.VaryByCustom =
string.Empty;
' Get the current VaryByCustom.
Dim varyByCustomValue As String = _
outputCacheProfile.VaryByCustom
' Set the VaryByCustom property.
outputCacheProfile.VaryByCustom = _
String.Empty
Comentários
O VaryByCustom pode ser qualquer texto que represente os requisitos personalizados de cache de saída. Se uma cadeia de caracteres personalizada for inserida, você deverá substituir o GetVaryByCustomString método no arquivo Global.asax do aplicativo.
Observação
As VaryByCustom configurações são as mesmas usadas pelo VaryByCustom
atributo da @ OutputCache
diretiva .