Authentication: AuthenticationMode;
The Authentication property determines a type of the user authentication.
Sub Main;
Var
MB: IMetabase;
LoS: ILogonSession;
Mu: IMetabaseUser;
SPUD: ISecurityPackageUserData;
i: Integer;
Begin
MB:=MetabaseClass.Active;
LoS:=MB.LogonSession;
Mu:=Los.User;
SPUD:=Mu.PackageData;
i:=SPUD.Authentication;
End Sub Main;
After executing the example the "i" variable stores the authentication type, that is converted to integer format.
See also: