SlotName(Index: Intege): String;
Index - column number.
The SlotName property returns the column name of the repository credentials table, the column number is passed by the Index parameter.
Sub Main;
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 Main;
After executing the example the "s" variable will contain the name of the first column of the credentials table of the repository.
See also: