IForeNETBuiltinAssemblies.SystemName

Syntax

SystemName(Index: Integer): String;

Parameters

Index is an assembly index.

Description

The SystemName property returns the name that was used to register the assembly in GAC. Assembly index is passed by the Index parameter.

Comments

This property returns the system name that was used to register an assembly in GAC. For example: Prognoz.Platform.Interop.Metabase.

Example

Sub UserProc;
Var
    BuiltAssms: IForeNETBuiltinAssemblies;
    i: Integer;
Begin
    BuiltAssms := ForeNETAssemblyClass.BuiltinAssemblies;
    For i := 0 To BuiltAssms.Count - 1 Do
        Debug.WriteLine("Assembly: " + BuiltAssms.SystemName(i));
    End For;
End Sub UserProc;

After executing this example, the names of the platform assemblies, that were used to register these assemblies in GAC, are displayed in the development environment console.

See also:

IForeNETBuiltinAssemblies