ICredentials.SlotName

Syntax

SlotName(Index: Intege): String;

Parameters

Index - column number.

Description

The SlotName property returns the column name of the repository credentials table, the column number is sent by the Index parameter.

Example

Sub UserProc;
Var
    Mb: IMetabase;
    LoS: ILogonSession;
    Sc: ISecurityConnection;
    Cr: ICredentials;
    S: String;
Begin
    Mb := MetabaseClass.Active;
    LoS := Mb.LogonSession;
    Sc := LoS.PrimaryConnection;
    Cr := Sc.Credentials;
    S := Cr.SlotName(0);
End Sub UserProc;

After executing the example the "s" variable will contain the name of the first column of the credentials table of the repository.

See also:

ICredentials