ISecurityPackageUserData.Authentication

Syntax

Authentication: AuthenticationMode;

Description

The Authentication property determines a type of the user authentication.

Example

Sub UserProc;
Var
    MB: IMetabase;
    User: IMetabaseUser;
    SPUD: ISecurityPackageUserData;
Begin
    MB := MetabaseClass.Active;
    User := MB.LogonSession.User;
    SPUD := User.PackageData;
    Debug.WriteLine(SPUD.Authentication);
End Sub UserProc;

After executing the example the development environment console displays the current repository user authentication type.

See also:

ISecurityPackageUserData