Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
protected Hashtable GetPropertyNames
{
get
{
Hashtable HT = new Hashtable();
PageTypeCollection PTC = new PageTypeCollection();
PTC = PageType.List();
foreach (PageType PT in PTC)
{
foreach(PageDefinition PDef in PageDefinition.List(PT.ID))
{
if(!HT.Contains(PDef.Name))
{
HT.Add(PDef.ID,PDef.Name);
}
}
}
return HT;
}
}