Interface IContentHistory
Represents the changes made to a content record (and tracked via a specific history log field)
Inherited Members
IComparable.CompareTo(object)
Namespace: Estrelica.Archer.Content
Assembly: Estrelica.Interfaces.dll
Syntax
[StayPublic]
[DoNotObfuscateType]
public interface IContentHistory : IArcherEntity, IArcherEntityBase, IArcherBase, IDictionary<string, object>, ICollection<KeyValuePair<string, object>>, IEnumerable<KeyValuePair<string, object>>, IEnumerable, IComparable, IEquatable<IArcherEntity>
Properties
HistoryAudits
One or more IHistoryAudit results representing the change events tracked by the HistoryLog field for this content record. Note that IHistoryAudit is merely the common base interface for these events. The actual implementation will be either IFieldAudit, IAdvancedWorkflowAudit or ISignatureAudit depending on which change event types are being returned.
Declaration
IEnumerable<IHistoryAudit> HistoryAudits { get; }
Property Value
IEnumerable<IHistoryAudit> |
HistoryLogField
The IHistoryLogField that tracks this content history
Declaration
IHistoryLogField HistoryLogField { get; }
Property Value
IHistoryLogField |
HistoryLogFieldId
The integer field Id of the HistoryLog field that tracks this content history
Declaration
int HistoryLogFieldId { get; }
Property Value
int |