using System; using Cpp2IlInjected; namespace System.IO { /// Provides data for the directory events: , , . // Token: 0x020001FE RID: 510 [Token(Token = "0x20001FE")] public class FileSystemEventArgs : EventArgs { /// Initializes a new instance of the class. /// One of the values, which represents the kind of change detected in the file system. /// The root directory of the affected file or directory. /// The name of the affected file or directory. // Token: 0x06000D31 RID: 3377 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000D31")] [Address(RVA = "0x29E3A70", Offset = "0x29E2870", VA = "0x1829E3A70")] public FileSystemEventArgs(WatcherChangeTypes changeType, string directory, string name) { } // Token: 0x04000728 RID: 1832 [FieldOffset(Offset = "0x10")] [Token(Token = "0x4000728")] private WatcherChangeTypes changeType; // Token: 0x04000729 RID: 1833 [FieldOffset(Offset = "0x18")] [Token(Token = "0x4000729")] private string directory; // Token: 0x0400072A RID: 1834 [FieldOffset(Offset = "0x20")] [Token(Token = "0x400072A")] private string name; } }