Values from the enumeration can be used in combination as bitwise flags to control execution of the background script.
            
Namespace: Facilita.Fc.Runtime.BackgroundScriptingAssembly: fc_clr (in fc_clr.dll) Version: 9.5.8.37
Syntax
Members
| Member name | Value | Description | |
|---|---|---|---|
| SingleShot | 1 | The background script will be run once only. | |
| Loop | 2 | The background script will iterate continually, until it quits or is forced to do so. | |
| LongRunningScript | 4 | A hint to the .NET infrastructure to aid system resource planning. Set this flag if your background script is like a daemon. | |
| JustCreate | 8 | The background script is created and prepared for execution, but StartBackgroundScript(String) must be called to start it later. | 
See Also