Share via


WebPageRenderingBase.PageData Property

When overridden in a derived class, provides array-like access to page data that is shared between pages, layout pages, and partial pages.

Namespace:  System.Web.WebPages
Assembly:  System.Web.WebPages (in System.Web.WebPages.dll)

Syntax

'Declaration
Public MustOverride ReadOnly Property PageData As IDictionary(Of Object, Object)
    Get
'Usage
Dim instance As WebPageRenderingBase 
Dim value As IDictionary(Of Object, Object)

value = instance.PageData
public abstract IDictionary<Object, Object> PageData { get; }
public:
virtual property IDictionary<Object^, Object^>^ PageData {
    IDictionary<Object^, Object^>^ get () abstract;
}
abstract PageData : IDictionary<Object, Object>
abstract function get PageData () : IDictionary<Object, Object>

Property Value

Type: System.Collections.Generic.IDictionary<Object, Object>
An object that provides array-like access to page data.

See Also

Reference

WebPageRenderingBase Class

System.Web.WebPages Namespace