HttpApplicationStateBase.Item[] 属性

定义

当在派生类中重写时,按名称或索引获取 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

集合中的对象的索引。

属性值

Object

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

集合中对象的名称。

属性值

Object

name 所引用的对象。

例外

适用于