IAuditLog.Filter

Syntax

Filter: IAuditFilter;

Description

The Filter property returns the object that contains a filter of the access protocol.

Example

Sub Main;

Var

MB: IMetabase;

MS: IMetabaseSecurity;

AL: IAuditLog;

AF: IAuditFilter;

Begin

MB:=MetabaseClass.Active;

MS:=MB.Security;

Al:=MS.OpenAuditLog;

AF:=Al.Filter;

End Sub Main;

The AF variable contains a filter of the access protocol after executing this example.

See also:

IAuditLog