SystemName(Index: Integer): String;
Index is an assembly index.
The SystemName property returns the name that was used to register the assembly in GAC. Assembly index is passed by the Index parameter.
This property returns the system name that was used to register an assembly in GAC. For example: Prognoz.Platform.Interop.Metabase.
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: