Contains the expression used to identify the audited records to delete from the Event table. A disposition rule must be a fragment of a SQL WHERE-clause expression. If the value of the expression evaluates to true, the audited event is deleted.

The disposition rule is evaluated as a filter expression, and has the same syntax requirements as the FilterExpression property.

The properties referenced in a disposition rule are relative to the event object, not to the event's source object. However, you can reference source object properties that are directly on the event object, for example, the source object class or ID. You can also reference source object properties that have been added to the event as the result of Property Auditing.

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

ToggleSyntax

Visual Basic (Declaration)
Property DispositionRule As String
C#
string DispositionRule { get; set; }
Visual C++
property String^ DispositionRule {
	String^ get ();
	void set (String^ value);
}
JavaScript
function get_dispositionRule();
function set_dispositionRule(value);

ToggleRemarks

ToggleSee Also