HttpApplicationStateBase.Get 方法

定义

当在派生类中重写时,按名称或索引获取状态对象。

重载

Get(Int32)

在派生类中重写时,按索引获取状态对象。

Get(String)

在派生类中重写时,按名称获取状态对象。

Get(Int32)

在派生类中重写时,按索引获取状态对象。

public:
 virtual System::Object ^ Get(int index);
public virtual object Get (int index);
abstract member Get : int -> obj
override this.Get : int -> obj
Public Overridable Function Get (index As Integer) As Object

参数

index
Int32

要获取的应用程序状态对象的索引。

返回

Object

index 所引用的对象。

例外

适用于

Get(String)

在派生类中重写时,按名称获取状态对象。

public:
 virtual System::Object ^ Get(System::String ^ name);
public virtual object Get (string name);
abstract member Get : string -> obj
override this.Get : string -> obj
Public Overridable Function Get (name As String) As Object

参数

name
String

要获取的对象的名称。

返回

Object

name 所引用的对象。

例外

适用于