Class AuditChange
เนื้อหานี้ยังไม่ได้แปลเป็นภาษาไทย แสดงเป็นภาษาอังกฤษแทน
Namespace: Cephalon.Abstractions.Audit
Assembly: Cephalon.Abstractions.dll
Describes one field-level change captured by an audit entry.
public sealed class AuditChangeInheritance
Section titled “Inheritance”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”AuditChange(string, string?, string?)
Section titled “ AuditChange(string, string?, string?)”Creates a new audit change.
public AuditChange(string fieldName, string? oldValue = null, string? newValue = null)Parameters
Section titled “Parameters”fieldName string
The logical field or property name that changed.
oldValue string?
The previous serialized value when one is known.
newValue string?
The new serialized value when one is known.
Properties
Section titled “Properties”FieldName
Section titled “ FieldName”Gets the logical field or property name that changed.
public string FieldName { get; }Property Value
Section titled “Property Value”NewValue
Section titled “ NewValue”Gets the new serialized value when one is known.
public string? NewValue { get; }Property Value
Section titled “Property Value”OldValue
Section titled “ OldValue”Gets the previous serialized value when one is known.
public string? OldValue { get; }