Specifies the audit recording level of the source object for an event of type ObjectChangeEvent. (The source object is the object on which the event is fired.) The recording levels are ORIGINAL_AND_MODIFIED_OBJECTS (both the original, pre-event object and the modified, post-event object are recorded), MODIFIED_OBJECT (only the modified, post-event object is recorded), and NONE (no source objects are recorded). If MODIFIED_OBJECT is set, the event's OriginalObject property will be null. If NONE is specified, the event's OriginalObject and SourceObject properties will be null, and the event's ModifiedProperties property will be empty.

NOTE Persisting audited source objects in a database can result in substantial consumption of large object (LOB) storage.

Namespace:  FileNet.Api.Admin
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Property ObjectStateRecordingLevel As ObjectStateRecordingLevel
C#
ObjectStateRecordingLevel ObjectStateRecordingLevel { get; set; }
Visual C++
property ObjectStateRecordingLevel ObjectStateRecordingLevel {
	ObjectStateRecordingLevel get ();
	void set (ObjectStateRecordingLevel value);
}
JavaScript
function get_objectStateRecordingLevel();
function set_objectStateRecordingLevel(value);

ToggleRemarks

ToggleSee Also