Represents the executing engine, containing methods and properties pertaining to engine information.

public class Engine
CODE

Example

The following example demonstrates retrieving a few config values and a CaptureApi client from the engine helper class.

public class Example : CustomNode
{
    var mongoConnection = Engine.GetEngineConfigSetting("Mongo");
    var captureApi = Engine.GetCaptureApiClient();
}
CODE

Properties

string ServiceName

The service name of the executing engine.


Methods