IExternalCatalogManager.Realms

Syntax

Realms: IExternalCatalogRealms;

Description

The Realms property returns the collection of storage areas/domains with information about security subjects available for use in the platform.

Example

Add a link to the Host system assembly.

Sub UserProc;
Var
    ExtManager: IExternalCatalogManager;
    Realms: IExternalCatalogRealms;
    Realm: IExternalCatalogRealm;
Begin
    ExtManager := New ExternalCatalogManager.Create;
    Realms := ExtManager.Realms;
    // View information about storage areas/domains
    For Each Realm In Realms Do
        Debug.WriteLine(Realm.Name + '|' + Realm.Type.ToString);
    End For;
End Sub UserProc;

After executing the example the development environment console displays information about storage areas/domains available for use in the platform.

See also:

IExternalCatalogManager