Cache.Count 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取缓存中存储的项数。
public:
property int Count { int get(); };
public int Count { get; }
member this.Count : int
Public ReadOnly Property Count As Integer
属性值
缓存中存储的项数。
示例
以下示例获取 属性的值Count
,将其转换为字符串,并将字符串Text分配给 Web 服务器控件 Label1
的 Label 属性。
// 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 跟踪功能时,此属性非常有用。