ICredentials.SlotName

Syntax

SlotName(Index: Intege): String;

Parameters

Index. Column index.

Description

The SlotName property returns column name in the repository credentials table.

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 contains name of the first column in the repository credentials table.

See also:

ICredentialsBase