ParamName(Index: Integer): String;
Index. A parameter index of security module.
The ParamName property returns a parameter name of the security module, which index is passed by the Index parameter.
Sub Main;
Var
MB: IMetabase;
LoS: ILogonSession;
User: ISecurityConnection;
SPLD: ISecurityPackageLogonData;
s:String;
Begin
MB:=MetabaseClass.Active;
LoS:=MB.LogonSession;
User:=LoS.PrimaryConnection;
SPLD:=User.LogonData;
s:=SPLD.ParamName(0);
End Sub Main;
After executing the example the "s" variable contains a name of the first security module parameter.
See also: