次の方法で共有


HttpApplicationState.Count プロパティ

定義

HttpApplicationState コレクション内のオブジェクトの数を取得します。

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

プロパティ値

Int32

コレクション内の項目のオブジェクト数。 既定値は 0 です。

次の例は、コレクション内のオブジェクトの数が 5 を超える場合にのみ実行されます。

if (Application.Count > 5)
{
    //...
}
If Application.Count > 5 Then
   ' ...
End If

適用対象