Enum PagePublishedStatus
Determine the level of filtering that should be applied by the FilterPublish filter.
Namespace: EPiServer.Core
Assembly: EPiServer.dll
Version: 11.20.7Syntax
public enum PagePublishedStatus
Fields
Name | Description |
---|---|
Ignore | Always include page, regardless of pending publish or publish dates. Useful for system level functions, but not applicable for user level listings. |
Published | Include page if it has been published and current time is between start publish and stop publish. This is the normal case. |
PublishedIgnoreDates | Include page if it has been published, but ignore publish dates. Do not use unless you know what you are doing. |
PublishedIgnoreStopPublish | Include page if it has been published and current time is past its start publish date. May be useful for news archives etc. where you want the information to be permanently visible. |