HttpSessionState.Item[] 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置个别会话值。
重载
Item[Int32] |
按数字索引获取或设置会话值。 |
Item[String] |
按名称获取或设置会话值。 |
Item[Int32]
按数字索引获取或设置会话值。
public:
property System::Object ^ default[int] { System::Object ^ get(int index); void set(int index, System::Object ^ value); };
public object this[int index] { get; set; }
member this.Item(int) : obj with get, set
Default Public Property Item(index As Integer) As Object
参数
- index
- Int32
会话值的数字索引。
属性值
存储在指定索引处的会话状态值;如果该项不存在,则为 null
。
另请参阅
适用于
Item[String]
按名称获取或设置会话值。
public:
property System::Object ^ default[System::String ^] { System::Object ^ get(System::String ^ name); void set(System::String ^ name, System::Object ^ value); };
public object this[string name] { get; set; }
member this.Item(string) : obj with get, set
Default Public Property Item(name As String) As Object
参数
- name
- String
会话值的键名称。
属性值
具有指定名称的会话状态值;如果该项不存在,则为 null
。