ExecutionFlags EnumerationC# API
Values from the enumeration can be used in combination as bitwise flags to control execution of the background script.

Namespace: Facilita.Fc.Runtime.BackgroundScripting
Assembly: fc_clr (in fc_clr.dll) Version: 9.5.5.77
Syntax

[FlagsAttribute]
public enum ExecutionFlags
Members

  Member nameValueDescription
SingleShot1 The background script will be run once only.
Loop2 The background script will iterate continually, until it quits or is forced to do so.
LongRunningScript4 A hint to the .NET infrastructure to aid system resource planning. Set this flag if your background script is like a daemon.
JustCreate8 The background script is created and prepared for execution, but StartBackgroundScript(String) must be called to start it later.
See Also