Retrieves audit entries 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> Entries( out int count, IUser user, DateTime startTime, DateTime endTime = null, int pageSize = -1, int startIndex = -1 )
Parameters
- count
- Type: SystemInt32
Output total count of audit entries - user
- Type: Ingeniux.CMSIUser
Filtering operating user - startTime
- Type: SystemDateTime
Lower end 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, starts from first entry
Return Value
Type: IEnumerableIAuditEntryCollection of audit entries
See Also