SaaS CMS has officially launched! Learn more now.

Class ChangeLogContentMove

An EPiServer CMS content move change log

Inheritance
System.Object
ChangeLogContentMove
Namespace: EPiServer.ChangeLog
Assembly: EPiServer.dll
Version: 8.11.0
Syntax
public class ChangeLogContentMove : ChangeLogContent, IChangeLogItem, IChangeLogUpdatableItem

Constructors

ChangeLogContentMove()

Parameterless constructor. Should be used in conjuction with the InitializeFromStorage(Int64, String, DateTime, Int32, Int32, String) method when a change log data has been read from the change log

Declaration
public ChangeLogContentMove()

ChangeLogContentMove(ContentReference, Guid, Int32, String, ContentReference, Guid, ContentReference, Guid, String)

Constructs a new content move change log

Declaration
public ChangeLogContentMove(ContentReference contentLink, Guid contentGuid, int contentTypeId, string name, ContentReference oldParent, Guid oldParentGuid, ContentReference newParent, Guid newParentGuid, string changedBy)
Parameters
Type Name Description
ContentReference contentLink

The PageReference of the affected page

System.Guid contentGuid

The page GUID of the affected page

System.Int32 contentTypeId

The content type id.

System.String name

The name of the affected page

ContentReference oldParent

The PageReference of the old parent of the affected page

System.Guid oldParentGuid

The old parent GUID.

ContentReference newParent

The PageReference of the new parent of the affected page

System.Guid newParentGuid

The new parent GUID.

System.String changedBy

The user who performed the action

Properties

ExtensionProperties

Get or sets properties that should be serialized

Declaration
protected override IDictionary<string, string> ExtensionProperties { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, System.String>

Property values

Overrides

NewParent

The ContentReference of the new parent of the affected content

Declaration
public ContentReference NewParent { get; }
Property Value
Type Description
ContentReference

NewParentGuid

The guid of the new parent of the affected content

Declaration
public Guid NewParentGuid { get; }
Property Value
Type Description
System.Guid

OldParent

The ContentReference of the old parent of the affected content

Declaration
public ContentReference OldParent { get; }
Property Value
Type Description
ContentReference

OldParentGuid

The guid of the old parent of the affected content

Declaration
public Guid OldParentGuid { get; }
Property Value
Type Description
System.Guid

Implements

Extension Methods