HttpApplicationStateWrapper.Item[] 属性

定义

按名称或索引,获取 HttpApplicationState 集合中的对象。

重载

Item[Int32]

按索引获取状态对象。

Item[String]

按名称获取状态对象。

Item[Int32]

按索引获取状态对象。

public:
 virtual property System::Object ^ default[int] { System::Object ^ get(int index); };
public override object this[int index] { get; }
member this.Item(int) : obj
Default Public Overrides ReadOnly Property Item(index As Integer) As Object

参数

index
Int32

集合中的对象的索引。

属性值

Object

index 所引用的对象。

例外

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

集合中对象的名称。

属性值

Object

如果找到,则为 name 引用的对象;否则为 null 引用的对象。

适用于