ISecurityPackage.Id

Syntax

Id: String;

Description

The Id property returns an identifier of the security module.

Example

Sub Main;

Var

Man: IMetabaseManager;

Packs: IScPacks;

Pack: IScPack;

Begin

Man := MetabaseManagerFactory.Active;

Packs := Man.Packs;

For Each Pack In Packs Do

Debug.WriteLine(Pack.Id + " " + Pack.Name);

End For;

End Sub Main;

After executing the example the list of security packages available in the platform will be displayed in the development environment console.

See also:

ISecurityPackage