Partager via


Cache.Count Propriété

Définition

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é

Int32

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.

S’applique à