HttpApplicationStateBase.Get 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
当在派生类中重写时,按名称或索引获取状态对象。
重载
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
要获取的应用程序状态对象的索引。
返回
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
要获取的对象的名称。
返回
name
所引用的对象。