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: 0x020002BD RID: 701 [Token(Token = "0x20002BD")] [ComVisible(true)] [Serializable] public enum SearchOption { /// Includes only the current directory in a search operation. // Token: 0x04000DD0 RID: 3536 [Token(Token = "0x4000DD0")] 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: 0x04000DD1 RID: 3537 [Token(Token = "0x4000DD1")] AllDirectories } }