HttpApplicationState.Item[] 属性

定义

获取对 HttpApplicationState 集合中的对象的访问。 重载该属性以允许通过名称或数字索引访问对象。

重载

Item[String]

通过名称获取单个 HttpApplicationState 对象的值。

Item[Int32]

通过索引获取单个 HttpApplicationState 对象。

Item[String]

通过名称获取单个 HttpApplicationState 对象的值。

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

集合中对象的名称。

属性值

Object

name 所引用的对象。

示例

以下示例返回从HttpApplicationState内部Application对象的集合中命名MyAppVar1的对象,并将其复制到新的对象变量。

Object MyObject;
MyObject = Application["MyAppVar1"];
Dim MyObject As Object
MyObject = Application("MyAppVar1")

适用于

Item[Int32]

通过索引获取单个 HttpApplicationState 对象。

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

参数

index
Int32

集合中对象的数字索引。

属性值

Object

index 所引用的对象。

示例

下面的示例从内部Application对象的集合中返回第一个对象 (索引 = 0) HttpApplicationState,并将其复制到新的对象变量。

Object MyObject;
MyObject = Application[0];
Dim MyObject As Object
MyObject = Application(0)

适用于