using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.IO { /// Specifies whether to search the current directory, or the current directory and all subdirectories. // Token: 0x020002C4 RID: 708 [Token(Token = "0x20002C4")] [ComVisible(true)] [Serializable] public enum SearchOption { /// Includes only the current directory in a search operation. // Token: 0x04000DDA RID: 3546 [Token(Token = "0x4000DDA")] TopDirectoryOnly, /// Includes the current directory and all its subdirectories in a search operation. This option includes reparse points such as mounted drives and symbolic links in the search. // Token: 0x04000DDB RID: 3547 [Token(Token = "0x4000DDB")] AllDirectories } }