Cache.Count 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 le nombre d’éléments stockés dans le cache.
public:
property int Count { int get(); };
public int Count { get; }
member this.Count : int
Public ReadOnly Property Count As Integer
Valeur de propriété
Le nombre d’éléments stockés dans le cache.
Exemples
L’exemple suivant obtient la valeur de la Count
propriété, la convertit en chaîne et affecte la chaîne à la Text propriété d’un Label contrôle serveur Web. Label1
// Convert the Count property to a string
// and display its value in a Label server control.
Label1.Text = "The number of items in the cache:" + Cache.Count.ToString();
' Convert the Count property to a string
' and display its value in a Label server control.
Label1.Text = "The number of items in the cache:" + Cache.Count.ToString()
Remarques
Cette propriété peut être utile lors de la surveillance des performances de votre application ou lors de l’utilisation de ASP.NET fonctionnalité de suivi.