Engine Initialization and Shutdown
Initializing
To initialize the Engine services, use the Init() method.
Note
This method must be called before all other methods.
Shutting Down
To shutdown the Engine, use the Shutdown() method.
Note
No other methods or property of any Engine's class or structure should be called or accessed after shutdown.
For example:
try
{
var fixEngine = Engine.Init();
// Session-related logic goes here.
Engine.Shutdown();
}
catch (Exception ex)
{
Console.WriteLine("Exception: {0}", ex);
}