Cache.Count プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
キャッシュに格納されている項目の数を取得します。
public:
property int Count { int get(); };
public int Count { get; }
member this.Count : int
Public ReadOnly Property Count As Integer
プロパティ値
キャッシュに格納されている項目の数。
例
次の例では、プロパティの値をCount
取得し、文字列に変換し、Web サーバー コントロールLabel1
のプロパティにText文字列を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 トレース機能を使用する場合に便利です。