London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!

Interface IChangeLogItem

Interface representing a change log item

Namespace: EPiServer.ChangeLog
Assembly: EPiServer.dll
Version: 10.10.4
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