IAuditEntry Interface Ingeniux CMS Content Store API

Presents an entry in the Audit Trail system. This entry stores the information regarding what entity was modified, which user worked on the entity, and what type of action was performed on that entity.

Namespace: Ingeniux.CMS
Assembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 9.0.565.0 (9.0.565)
Syntax

public interface IAuditEntry

The IAuditEntry type exposes the following members.

Properties

  NameDescription
Public propertyActionDescription
Gets the description of the action performed on the entity.
Public propertyEntity
Gets the entity on which the action was performed.
Public propertyTime
Gets the time of this entry.
Public propertyUser
Gets the user who performs the action.
Top
Methods

  NameDescription
Public methodCode exampleSerialize
Returns the entry's XML presentation.
Top
Examples

AuditEntry is retrieved from AuditTrail by its ID.
C#
IAuditEntry entry = store.AuditTrail.Entry("AuditEntries/8321");
See Also

Reference