Audit Property
See Also 
SourceCode.Workflow.Authoring Namespace > DataField Class : Audit Property



Glossary Item Box

Gets or sets the keep audit trail option on the DataField. If this option is enabled K2 Server will keep a full audit trail/history on the DataField during execution of the process instance. The audit trail is accessible by means of the Reporting framework.

Syntax

Visual Basic (Declaration) 
Public Property Audit As Boolean
Visual Basic (Usage)Copy Code
Dim instance As DataField
Dim value As Boolean
 
instance.Audit = value
 
value = instance.Audit
C# 
public bool Audit {get; set;}
C++/CLI 
public:
property bool Audit {
   bool get();
   void set (    bool value);
}

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also