Partager via


OutputCacheProfile.VaryByControl Propriété

Définition

Obtient ou définit la propriété VaryByControl.

public:
 property System::String ^ VaryByControl { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("varyByControl")]
public string VaryByControl { get; set; }
[<System.Configuration.ConfigurationProperty("varyByControl")>]
member this.VaryByControl : string with get, set
Public Property VaryByControl As String

Valeur de propriété

Valeur de VaryByControl.

Attributs

Exemples

L'exemple de code suivant montre comment utiliser la propriété VaryByControl.


// Get the current VaryByControl.
String varyByControlValue = 
    outputCacheProfile.VaryByControl;

// Set the VaryByControl.
outputCacheProfile.VaryByControl = 
    string.Empty;
  ' Get the current VaryByControl.
  Dim varyByControlValue As String = _
  outputCacheProfile.VaryByControl

  ' Set the VaryByControl.
  outputCacheProfile.VaryByControl = _
  String.Empty

Remarques

est VaryByControl un ensemble délimité par des points-virgules d’ID de contrôles à mettre en cache.

Pour plus d’informations, consultez Mise en cache de plusieurs versions de la sortie de contrôle utilisateur.

Notes

Les VaryByControl paramètres sont les mêmes que ceux utilisés par l’attribut VaryByControl de la @ OutputCache directive.

S’applique à

Voir aussi