Compartilhar via


OutputCacheProfile.VaryByCustom Propriedade

Definição

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 .

Aplica-se a

Confira também