• Version 1.19.0
Show / Hide Table of Contents

Configuring the Engine

The EngineSettings class allows changing Engine settings.

For example:

var settings = new EngineSettings
{
    LicenseStore = "C:/OnixS/Licenses"
};

Engine.Init(settings);

Configuring the Global Session Settings

The GlobalSessionSettings property allows changing the global session settings. These settings are applied to all sessions.

For example:

var settings = new EngineSettings();

settings.GlobalSessionSettings.StorageDirectory = "C:\\Users\\FixEngine\\Logs";

Engine.Init(settings);

Default Settings

Default settings are available via the EngineSettings.Default class.

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