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

Class AuditSelection

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

Namespace: Cephalon.Abstractions.AppModel
Assembly: Cephalon.Abstractions.dll

Describes the active audit and history inputs resolved for a Cephalon app.

public sealed class AuditSelection

objectAuditSelection

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

AuditSelection(bool?, AuditHistorySelection?)

Section titled “ AuditSelection(bool?, AuditHistorySelection?)”

Initializes a new instance of the class.

[JsonConstructor]
public AuditSelection(bool? enabled = null, AuditHistorySelection? history = null)

enabled bool?

Whether audit support was explicitly enabled.

history AuditHistorySelection?

The durable audit-history inputs resolved for the app.

Gets an empty audit-selection instance.

public static AuditSelection Empty { get; }

AuditSelection

Gets a value indicating whether audit support was explicitly enabled.

public bool? Enabled { get; }

bool?

Gets a value indicating whether any audit-selection inputs were explicitly supplied.

public bool HasValues { get; }

bool

Gets the durable audit-history inputs resolved for the app.

public AuditHistorySelection History { get; }

AuditHistorySelection