Class AuditHistoryQueryResult
Namespace: Cephalon.Abstractions.Audit
Assembly: Cephalon.Abstractions.dll
Represents one page of audit-history results returned by an
public sealed class AuditHistoryQueryResultInheritance
Section titled “Inheritance”object ← AuditHistoryQueryResult
Inherited Members
Section titled “Inherited Members”object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object?, object?), object.ToString()
Constructors
Section titled “Constructors”AuditHistoryQueryResult(IReadOnlyList<AuditHistoryEntry>?, int, int, int)
Section titled “ AuditHistoryQueryResult(IReadOnlyList<AuditHistoryEntry>?, int, int, int)”Creates a new audit-history query result.
public AuditHistoryQueryResult(IReadOnlyList<AuditHistoryEntry>? entries, int offset, int limit, int totalCount)Parameters
Section titled “Parameters”entries IReadOnlyList<AuditHistoryEntry>?
The returned audit-history entries.
offset int
The zero-based query offset that produced this page.
limit int
The normalized page size used for the query.
totalCount int
The total number of matching entries before paging was applied.
Properties
Section titled “Properties”Entries
Section titled “ Entries”Gets the returned audit-history entries.
public IReadOnlyList<AuditHistoryEntry> Entries { get; }Property Value
Section titled “Property Value”IReadOnlyList<AuditHistoryEntry>
HasMore
Section titled “ HasMore”Gets a value indicating whether more entries remain beyond this page.
public bool HasMore { get; }Property Value
Section titled “Property Value”Gets the normalized page size used for the query.
public int Limit { get; }Property Value
Section titled “Property Value”Offset
Section titled “ Offset”Gets the zero-based query offset that produced this page.
public int Offset { get; }Property Value
Section titled “Property Value”TotalCount
Section titled “ TotalCount”Gets the total number of matching entries before paging was applied.
public int TotalCount { get; }