HttpApplicationStateWrapper.Item[] 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
依名稱或索引,取得 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
集合中物件的索引。
屬性值
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
集合中的物件名稱。
屬性值
如果找到,則為 name
所參考的物件;否則為 null
。