IAuditFiltersContainer.FileName

Syntax

FileName: String;

FileName: string;

Description

The FileName property determines the file name from which container was loaded from.

Example

Add a link to the Metabase system assembly.

Sub UserProc;
Var
    FilCon: IAuditFiltersContainer;
Begin
    FilCon := New AuditFiltersContainer.Create;
    FilCon.Load;
    Debug.WriteLine(FilCon.FileName);
End Sub UserProc;
Public Shared Sub Main(Params: StartParams);
Var
    FilCon: IAuditFiltersContainer;
Begin
    FilCon := New AuditFiltersContainer.Create();
    FilCon.Load();
    System.Diagnostics.Debug.WriteLine(FilCon.FileName);
End Sub;

After executing the example, a name of the file, from which the container was loaded, is displayed in a console window.

See also:

IAuditFiltersContainer