IForeSerializerLoader.LoadAssembly

Syntax

LoadAssembly: IAssembly;

Description

The LoadAssembly method loads and saves the assembly into repository.

Comments

The method saves the assembly in accordance with the parameters specified in the CreateInfo property. If there is an object in repository that has the same identifier with the assembly being loaded, the exception is generated.

Example

Executing the example requires the c:\Assembly_1.ppassembly file that contains a saved platform assembly.

Sub UserProc;
Var
    MB: IMetabase;
    Fs: IForeSerializer;
    Loader: IForeSerializerLoader;
    Id: String;
Begin
    MB := MetabaseClass.Active;
    Fs := New ForeSerializer.Create;
    Loader := Fs.CreateLoaderFromFile("c:\Assembly_1.ppassembly", MB);
    Id := Loader.CreateInfo.Id;
    If MB.ItemById(Id) <> Null Then
        Loader.CreateInfo.Id := MB.GenerateId(Id);
        Loader.CreateInfo.Name := Loader.CreateInfo.Name + "_Copy";
    End If;
    Loader.CreateInfo.Parent := MB.Root;
    Loader.LoadAssembly;
End Sub UserProc;

Assembly is loaded from the specified file during example execution. Assembly is saved in the repository root. If there is an object that has the same identifier with the loading assembly in repository, the assembly identifier is changed before the loading.

See also:

IForeSerializerLoader