LogonData: ISecurityPackageLogonData;
The LogonData property returns the parameters of a security module that were used when logging on the repository.
Sub Main;
Var
MB: IMetabase;
LogSes: ILogonSession;
SPLD: ISecurityPackageLogonData;
Begin
MB:=MetabaseClass.Active;
LogSes:=MB.LogonSession;
SPLD:=LogSes.LogonData;
End Sub Main;
After executing the example the "SPLD" variable contains security module parameters.
See also: