OutputCacheProfile.VaryByCustom Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit la propriété 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
Valeur de propriété
Valeur de VaryByCustom.
- Attributs
Exemples
L'exemple de code suivant montre comment utiliser la propriété VaryByCustom.
// 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
Remarques
Le VaryByCustom peut être n’importe quel texte qui représente les exigences de mise en cache de sortie personnalisées. Si une chaîne personnalisée est entrée, vous devez remplacer la GetVaryByCustomString méthode dans le fichier Global.asax de l’application.
Notes
Les VaryByCustom paramètres sont les mêmes que ceux utilisés par l’attribut VaryByCustom
de la @ OutputCache
directive.