adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / FileTriggerOptions Enumeration


In This Topic
    FileTriggerOptions Enumeration
    In This Topic
    Options that control the behavior of a ArcanaDevelopment.adTempus.Client.FileTrigger.
    Syntax
    'Declaration
     
    
    <ComVisibleAttribute(True)>
    <GuidAttribute("D4869A50-C223-4F63-858C-BF800E5FFB8B")>
    <FlagsAttribute()>
    Public Enum FileTriggerOptions 
       Inherits System.Enum
    [ComVisible(true)]
    [Guid("D4869A50-C223-4F63-858C-BF800E5FFB8B")]
    [Flags()]
    public enum FileTriggerOptions : System.Enum 
    [ComVisible(true)]
    [Guid("D4869A50-C223-4F63-858C-BF800E5FFB8B")]
    [Flags()]
    public enum class FileTriggerOptions : public System.Enum 
    Members
    MemberValueDescription
    CaptureFile64 The file that causes the trigger to fire is saved in the job's history.
    ListAllMatchingFiles256 If more than one file meets the criteria, the job is triggered only once, but the FileName parameter contains the names of all of the matching files
    None0 No options specified
    RequireExclusiveAccess1 The trigger is not fired unless adTempus can obtain exclusive access to the file.
    TriggerFileCreated8 The trigger is fired whenever a matching file is created.
    TriggerFileDeleted32 The trigger is fired whenever a matching file is deleted.
    TriggerFileExists10 The trigger is fired if a matching file exists (includes ftoTriggerFileCreated).
    TriggerFileModified16 The trigger is fired whenever a matching file is modified.
    TriggerFileNotExists4 The trigger is fired if a matching file does not exist.
    TriggerForEach128 If more than one file meets the criteria, the job is triggered once for each file.
    WaitForAll512 Job is not triggered until all file specs have been satisfied.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             ArcanaDevelopment.adTempus.Shared.FileTriggerOptions

    See Also