Cache.Count 属性

定义

获取缓存中存储的项数。

public:
 property int Count { int get(); };
public int Count { get; }
member this.Count : int
Public ReadOnly Property Count As Integer

属性值

缓存中存储的项数。

示例

以下示例获取 属性的值Count,将其转换为字符串,并将字符串Text分配给 Web 服务器控件 Label1Label 属性。

// 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()

注解

监视应用程序的性能或使用 ASP.NET 跟踪功能时,此属性非常有用。

适用于