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
。