Hi Guys,
I have a situation where I get a list of PageId's (from an ItemRelationList) and apart from the regular properties of the page, I need to also find valus of the custom properties that are set through the PageProperties ItemType.
So far, I have read the page object by using the API:
var relatedPage = Dynamicweb.Content.Page.GetPageById(pageID);
And I can read the regular properties:
@relatedPage.MenuText
Assuming my custom property is called Page_Icon, how should I read the value of it?
I am using 8.9.1.13
Thanks,
Adrian