Gets the audit entities to save. Audit entities contain the audit information stored inside this auditor.

Namespace: MonoSoftware.LLBLGen
Assembly: MonoSoftware.LLBLGen (in MonoSoftware.LLBLGen.dll) Version: 1.0.40.661 (1.0.40.661)

Syntax

C#
public override IList GetAuditEntitiesToSave()
Visual Basic
Public Overrides Function GetAuditEntitiesToSave As IList
Visual C++
public:
virtual IList^ GetAuditEntitiesToSave() override
F#
abstract GetAuditEntitiesToSave : unit -> IList 
override GetAuditEntitiesToSave : unit -> IList 

Return Value

Type: IList
The list of audit entities to save, or null if there are no audit entities to save

Implements

IAuditorGetAuditEntitiesToSave()()()()

Remarks

Do not remove the audit entities and audit information from this auditor when this method is called, as the transaction in which the save takes place can fail and retried which will result in another call to this method

See Also