Try our conversational search powered by Generative AI!

Interface IVersionable

Defines signature for ContentData instance that supports versions.

Namespace: EPiServer.Core
Assembly: EPiServer.dll
Version: 10.10.4
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
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
DateTime? StopPublish { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

Extension Methods