Interface IHistoryAudit
Base interface for the interfaces IFieldAudit, IAdvancedWorkflowAudit and ISignatureAudit, representing the three audit event types tracked by History Log fields.
Namespace: Estrelica.Archer.Content
Assembly: Estrelica.Interfaces.dll
Syntax
[StayPublic]
[DoNotObfuscateType]
public interface IHistoryAudit
Properties
ActionDate
The UTC date/time that the audited action occurred
Declaration
DateTime ActionDate { get; }
Property Value
DateTime |
ActionUser
The IArcherUser who performed the audited action
Declaration
IArcherUser ActionUser { get; }
Property Value
IArcherUser |
ActionUserId
The Id of the user who performed the audited action
Declaration
int ActionUserId { get; }
Property Value
int |
Type
The type of history audit (Field, AdvancedWorkflow, or Signature)
Declaration
HistoryAuditType Type { get; }
Property Value
HistoryAuditType |