Public Member Functions | |
void | Initialize () |
Is called by Acad runtime only. | |
void | Terminate () |
Is called by Acad runtime only. | |
Protected Member Functions | |
ApplicationLoader (Assembly[] configuration) | |
Protected constructor. |
A descendant of this class should be defined in your application assembly as follows:
---declaring attribute to designate the loader class [assembly: ExtensionApplication(typeof(Acmx.Tests.AL))] ---custom namespace namespace Acmx.Tests { ---loader class public class AL : ApplicationLoader { public AL() : base( ---an array of cusom application assemblies new Assembly[] { typeof(AL).Assembly, typeof(ApplicationProvider).Assembly, typeof(EdgeBound).Assembly, typeof(EdgeEnum).Assembly }) { } } }
|
Protected constructor.
|
|
Is called by Acad runtime only.
|
|
Is called by Acad runtime only.
|