ข้ามไปยังเนื้อหา

Class AuditHistoryQueryResult

เนื้อหานี้ยังไม่ได้แปลเป็นภาษาไทย แสดงเป็นภาษาอังกฤษแทน

Namespace: Cephalon.Abstractions.Audit
Assembly: Cephalon.Abstractions.dll

Represents one page of audit-history results returned by an .

public sealed class AuditHistoryQueryResult

objectAuditHistoryQueryResult

object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object?, object?), object.ToString()

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)

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.

Gets the returned audit-history entries.

public IReadOnlyList<AuditHistoryEntry> Entries { get; }

IReadOnlyList<AuditHistoryEntry>

Gets a value indicating whether more entries remain beyond this page.

public bool HasMore { get; }

bool

Gets the normalized page size used for the query.

public int Limit { get; }

int

Gets the zero-based query offset that produced this page.

public int Offset { get; }

int

Gets the total number of matching entries before paging was applied.

public int TotalCount { get; }

int