• Version 1.16.0
Show / Hide Table of Contents

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);
}

See Also

  • Logging Services
In this article
Back to top Copyright © Onix Solutions.
Generated by DocFX