adTempus API
ArcanaDevelopment.adTempus.Client Namespace / ScriptCondition Class
Members


In This Topic
    ScriptCondition Class
    In This Topic
    A Condition that depends on the result of a script.
    Object Model
    ScriptCondition ClassDataContext ClassOID ClassADTObject ClassScript Class
    Syntax
    'Declaration
     
    
    Public NotInheritable Class ScriptCondition 
       Inherits Condition
    public sealed class ScriptCondition : Condition 
    public ref class ScriptCondition sealed : public Condition 
    Remarks

    The Script must return true to indicate that the condition is satisfied and execution can continue, or false to indicate that the condition is not satisfied.

    The script will be executed repeatedly at the interval specified by PollingInterval until the condition is satisfied.

    Be sure to set the StaysTriggered property appropriately. If StaysTriggered is false and other conditions are defined, the script will be continue to be executed each time the condition is polled (even if it has previously returned true) as long as other conditions remain unsatisfied.

    Inheritance Hierarchy

    System.Object
       ArcanaDevelopment.adTempus.Client.ObjectBase
          ArcanaDevelopment.adTempus.Client.ADTObject
             ArcanaDevelopment.adTempus.Client.Condition
                ArcanaDevelopment.adTempus.Client.ScriptCondition

    See Also