Class DynamicPropertyPage
Holds information about dynamic properties defined on a specific page.
Inheritance
Namespace: EPiServer.Core
Assembly: EPiServer.dll
Version: 12.0.3Syntax
public class DynamicPropertyPage : Object
Constructors
DynamicPropertyPage(PageReference, PageReference)
Initializes a new instance of the Dynamic
Declaration
public DynamicPropertyPage(PageReference pageLink, PageReference parent)
Parameters
Type | Name | Description |
---|---|---|
Page |
pageLink | The page link. |
Page |
parent | The parent. |
Properties
PageLink
Gets the page that the settings are stored on.
Declaration
public PageReference PageLink { get; }
Property Value
Type | Description |
---|---|
Page |
The page that the settings are stored on. |
Parent
Gets the closest parent that has dynamic properties defined.
Declaration
public PageReference Parent { get; }
Property Value
Type | Description |
---|---|
Page |
The closest parent that has dynamic properties defined. |
Methods
Add(DynamicProperty)
Adds a DynamicProperty to this page.
Declaration
public void Add(DynamicProperty property)
Parameters
Type | Name | Description |
---|---|---|
Dynamic |
property | A PropertyData with the property information. |
GetProperty(String, PropertyDataCollection)
Gets the Property
Declaration
public PropertyData GetProperty(string name, PropertyDataCollection properties)
Parameters
Type | Name | Description |
---|---|---|
System. |
name | The name. |
Property |
properties | The properties for the current language. |
Returns
Type | Description |
---|---|
Property |
The Property |
Remarks
The method checks if a property with the given name exist in either the language specific properties or the common properties.
InitializeData()
Initializes the inner PropertyDataCollectionFacade.
Declaration
public void InitializeData()