adTempus API
ArcanaDevelopment.adTempus.Client Namespace / ScriptExecutionTask Class / RunIsolated Property


In This Topic
    RunIsolated Property (ScriptExecutionTask)
    In This Topic
    Determines whether this script should run isolated from other scripts
    Syntax
    'Declaration
     
    
    Public Property RunIsolated As Boolean
    public bool RunIsolated {get; set;}
    public:
    property bool RunIsolated {
       bool get();
       void set (    bool value);
    }
    Remarks

    If RunIsolated is true, this script will be run in a separate host process from other scripts. If false, the script may be run in the same host process as other scripts being run for the same user.

    If Script is set and Script.RunIsolated is true, that setting takes precedence and the script is run isolated.

    See Also