HttpSessionStateWrapper.Item[] 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定個別的工作階段值。
多載
Item[Int32] |
使用指定的索引取得或設定工作階段值。 |
Item[String] |
使用指定的名稱取得或設定工作階段值。 |
Item[Int32]
使用指定的索引取得或設定工作階段值。
public:
virtual property System::Object ^ default[int] { System::Object ^ get(int index); void set(int index, System::Object ^ value); };
public override object this[int index] { get; set; }
member this.Item(int) : obj with get, set
Default Public Overrides Property Item(index As Integer) As Object
參數
- index
- Int32
工作階段值的索引。
屬性值
儲存在指定索引的工作階段狀態值。
例外狀況
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
工作階段值的索引鍵名稱。
屬性值
具有指定名稱的工作階段狀態值;如果此項目不存在,則為 null
。