次の方法で共有


HttpApplicationStateWrapper.Item[] プロパティ

定義

名前またはインデックスを使用して、HttpApplicationState コレクション内のオブジェクトを取得します。

オーバーロード

Item[Int32]

インデックスによって状態オブジェクトを取得します。

Item[String]

名前を使用して状態オブジェクトを取得します。

Item[Int32]

インデックスによって状態オブジェクトを取得します。

public:
 virtual property System::Object ^ default[int] { System::Object ^ get(int index); };
public override object this[int index] { get; }
member this.Item(int) : obj
Default Public Overrides ReadOnly Property Item(index As Integer) As Object

パラメーター

index
Int32

コレクション内のオブジェクトのインデックス。

プロパティ値

Object

index によって参照されるオブジェクト。

例外

index が、コレクションのインデックスの正しい範囲から外れています。

適用対象

Item[String]

名前を使用して状態オブジェクトを取得します。

public:
 virtual property System::Object ^ default[System::String ^] { System::Object ^ get(System::String ^ name); void set(System::String ^ name, System::Object ^ value); };
public override object this[string name] { get; set; }
member this.Item(string) : obj with get, set
Default Public Overrides Property Item(name As String) As Object

パラメーター

name
String

コレクション内のオブジェクトの名前。

プロパティ値

Object

見つかった場合は name で参照されているオブジェクト、それ以外の場合は null

適用対象