Try our conversational search powered by Generative AI!

Interface IChangeLogItem

Interface representing a change log item

Namespace: EPiServer.ChangeLog
Assembly: EPiServer.dll
Version: 11.20.7
Syntax
[Obsolete("The ChangeLog has been replaced by the Activity API.")]
public interface IChangeLogItem

Properties

Action

The action of the change log

Declaration
int Action { get; }
Property Value
Type Description
System.Int32

Category

The category of the change log

Declaration
int Category { get; }
Property Value
Type Description
System.Int32

ChangeDate

The change date of the change log

Declaration
DateTime ChangeDate { get; }
Property Value
Type Description
System.DateTime

ChangedBy

The user who action generated the change log

Declaration
string ChangedBy { get; }
Property Value
Type Description
System.String

LogData

The log data of the change log

Declaration
string LogData { get; }
Property Value
Type Description
System.String

SequenceNumber

The sequence number of the change log

Declaration
long SequenceNumber { get; }
Property Value
Type Description
System.Int64

Extension Methods