Retrieves audit entries that record entity updates in a paginated fashion.
Namespace: Ingeniux.CMS
Assembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 9.0.565.0 (9.0.565)
Syntax
IEnumerable<IAuditEntry> EntityUpdateEntries<T>( out int count, T entity, DateTime startTime, DateTime endTime = null, int pageSize = -1, int startIndex = -1 ) where T : IEntity
Parameters
- count
- Type: SystemInt32
Outputs total count of audit entries - entity
- Type: T
[Missing <param name="entity"/> documentation for "M:Ingeniux.CMS.IAuditTrail.EntityUpdateEntries``1(System.Int32@,``0,System.DateTime,System.DateTime,System.Int32,System.Int32)"]
- startTime
- Type: SystemDateTime
Lower and of the time range for audit entries - endTime (Optional)
- Type: SystemDateTime
Upper end of the time range for audit entries - pageSize (Optional)
- Type: SystemInt32
Number of entries to return; if not provided, returns all entries. - startIndex (Optional)
- Type: SystemInt32
Starting index of entries; if not provided, start from first entry.
Type Parameters
- T
Return Value
Type: IEnumerableIAuditEntryCollection of audit entries
See Also