using System; namespace System.IO { /// Specifies changes to watch for in a file or folder. /// 2 // Token: 0x02000127 RID: 295 [Flags] public enum NotifyFilters { /// The attributes of the file or folder. // Token: 0x04000AB4 RID: 2740 Attributes = 4, /// The time the file or folder was created. // Token: 0x04000AB5 RID: 2741 CreationTime = 64, /// The name of the directory. // Token: 0x04000AB6 RID: 2742 DirectoryName = 2, /// The name of the file. // Token: 0x04000AB7 RID: 2743 FileName = 1, /// The date the file or folder was last opened. // Token: 0x04000AB8 RID: 2744 LastAccess = 32, /// The date the file or folder last had anything written to it. // Token: 0x04000AB9 RID: 2745 LastWrite = 16, /// The security settings of the file or folder. // Token: 0x04000ABA RID: 2746 Security = 256, /// The size of the file or folder. // Token: 0x04000ABB RID: 2747 Size = 8 } }