Authentication: AuthenticationMode;
The Authentication property determines a type of the user authentication.
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: