HttpApplicationStateBase.Item[] 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
当在派生类中重写时,按名称或索引获取 HttpApplicationState 集合中的对象。
重载
Item[Int32] |
在派生类中重写时,按索引获取状态对象。 |
Item[String] |
在派生类中重写时,按名称获取状态对象。 |
Item[Int32]
在派生类中重写时,按索引获取状态对象。
public:
virtual property System::Object ^ default[int] { System::Object ^ get(int index); };
public virtual object this[int index] { get; }
member this.Item(int) : obj
Default Public Overridable ReadOnly 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 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
集合中对象的名称。
属性值
name
所引用的对象。