London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
AI OnAI Off
London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
PropertyCriteria criteria = new PropertyCriteria();
criteria.IsNull = true;
criteria.Name = "WriterName";
PropertyCriteriaCollection pcc = new PropertyCriteriaCollection();
col.Add(criteria);
PageDataCollection pages;
pages = Global.EPDataFactory.FindPagesWithCriteria(Global.EPConfig.StartPage, pcc, EPiServer.Security.AccessControlList.NoAccess);
That code will return all pages where WriterName is null.