Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more

Interface IVersionable

Defines signature for ContentData instance that supports versions.

Namespace: EPiServer.Core
Assembly: EPiServer.dll
Version: 12.0.3
Syntax
public interface IVersionable

Properties

IsPendingPublish

Gets or sets a value indicating whether this item is in pending publish state.

Declaration
bool IsPendingPublish { get; set; }
Property Value
Type Description
System.Boolean

true if this instance is in pending publish state; otherwise, false.

StartPublish

Gets or sets the start publish date for this item.

Declaration
Nullable<DateTime> StartPublish { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

Status

Gets or sets the version status of this item.

Declaration
VersionStatus Status { get; set; }
Property Value
Type Description
VersionStatus

StopPublish

Gets or sets the stop publish date for this item.

Declaration
Nullable<DateTime> StopPublish { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

Extension Methods