Click or drag to resize

IAuditTrail Interface


Represents the Audit Trail system. This system allows you to retrieve audit entries and add new entries. The Audit Trail system automatically creates entries after entities are created, updated, or deleted in the content store.

Namespace:  Ingeniux.CMS
Assembly:  Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.5.94
Syntax
public interface IAuditTrail

The IAuditTrail type exposes the following members.

Properties
  NameDescription
Public propertySettings
Gets the settings of the Audit Trail system.
Top
Methods
Remarks

The Audit Trail interface is only created once per ContentStore instance. It is not controlled within any UserSession, and its updates aren't involved in any transactions.

The Audit Trail interface doesn't allow for removal of entries, but it does perform automatic archives based on its settings.

Examples
The Audit Trail instance is retrieved directly from the ContentStore.
C#
IAuditTrail auditTrail = store.AuditTrail;
See Also