共用方式為


HttpSessionStateBase.Item[] 屬性

定義

在衍生類別中覆寫時,取得或設定個別工作階段的值。

多載

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 virtual object this[int index] { get; set; }
member this.Item(int) : obj with get, set
Default Public Overridable Property Item(index As Integer) As Object

參數

index
Int32

工作階段值的索引。

屬性值

Object

儲存在指定索引的工作階段狀態值。

例外狀況

適用於

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 virtual object this[string name] { get; set; }
member this.Item(string) : obj with get, set
Default Public Overridable Property Item(name As String) As Object

參數

name
String

工作階段值的索引鍵名稱。

屬性值

Object

具有指定名稱的工作階段狀態值;如果此項目不存在,則為 null

例外狀況

適用於