ISecurityPackageLogonData.ParamName

Syntax

ParamName(Index: Integer): String;

Parameters

Index. A parameter index of security module.

Description

The ParamName property returns a parameter name of the security module, which index is passed by the Index parameter.

Example

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:

ISecurityPackageLogonData