Specifies how to generate audit information for automatic audit properties such as CreatedBy (track creator), UpdatedBy (track last modified by) and DeletedBy (track deleted by).

Namespace:  Mindscape.LightSpeed.Audit
Assembly:  Mindscape.LightSpeed (in Mindscape.LightSpeed.dll)
Version: 4.0.0.0 (4.0.0.0)

Syntax

C#
public enum AuditInfoMode
Visual Basic (Declaration)
Public Enumeration AuditInfoMode

Members

Member nameDescription
None
Do not automatically populate audit fields. This is the default.
WindowsIdentity
Populate audit fields using the Windows identity of the current user.
HttpContext
Populate audit fields from the User property of the current HttpContext (assumes a Web application which performs authentication).
Custom
Populate audit fields using a custom strategy. You must set the CustomAuditInfoStrategy.

See Also