OutputCacheSection.EnableOutputCache 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 une valeur indiquant si le cache de sortie est activé.
public:
property bool EnableOutputCache { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("enableOutputCache", DefaultValue=true)]
public bool EnableOutputCache { get; set; }
[<System.Configuration.ConfigurationProperty("enableOutputCache", DefaultValue=true)>]
member this.EnableOutputCache : bool with get, set
Public Property EnableOutputCache As Boolean
Valeur de propriété
true
si le cache de sortie est activé ; sinon false
. La valeur par défaut est true
.
- Attributs
Exemples
L'exemple de code suivant montre comment utiliser la propriété EnableOutputCache.
// Get the current EnabledOutputCache.
Boolean enabledOutputCache =
outputCacheSection.EnableOutputCache;
// Set the EnabledOutputCache.
outputCacheSection.EnableOutputCache = false;
' Get the current EnabledOutputCache.
Dim enabledOutputCache As [Boolean] = _
outputCacheSection.EnableOutputCache
' Set the EnabledOutputCache.
outputCacheSection.EnableOutputCache = False
Remarques
Si la propriété a la EnableFragmentCache valeur false
, aucune page n’est mise en cache sur le serveur, quels que soient les paramètres de la directive @ OutputCache ou du profil de mise en cache utilisé par la page. Pour plus d’informations, consultez OutputCacheSettingsSection et OutputCacheProfile.