ILogonSession.User

Syntax

User: IMetabaseUser;

Description

The User property returns information about the current repository user.

Example

Sub Main;

Var

MB: IMetabase;

LogSes: ILogonSession;

User: IMetabaseUser;

Begin

MB:=MetabaseClass.Active;

LogSes:=MB.LogonSession;

User:=LogSes.User;

End Sub Main;

After executing the example the User variable contains information about the current user.

See also:

ILogonSession