Click or drag to resize

IAuditEntry Interface


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: 10.6.492
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
Example
AuditEntry is retrieved from AuditTrail by its ID.
C#
IAuditEntry entry = store.AuditTrail.Entry("AuditEntries/8321");
See Also