Page.Items 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取存储在页上下文中的对象的列表。
public:
property System::Collections::IDictionary ^ Items { System::Collections::IDictionary ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Collections.IDictionary Items { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Items : System.Collections.IDictionary
Public ReadOnly Property Items As IDictionary
属性值
对包含存储在页上下文中的对象的 IDictionary 的引用。
- 属性
注解
使用 Items 属性存储与页面请求具有相同生存期的对象。 此属性为只读;但是,可以将对象添加到 IDictionary 它返回的对象。
添加到 Items 该属性的对象在整个页面的整个生存期内都可用,因此可以在页面生命周期的早期将对象添加到 Items 事件中的属性,并在后续事件中访问这些对象。