ActionEngine Class

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

public class ActionEngine : Engine

Example

The following example demonstrates retrieving a configuration value and a CaptureApi client from the engine helper class.

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

Properties

string ServiceName

The service name of the executing engine.

Methods