using System; using System.Runtime.InteropServices; namespace System.IO { /// Specifies whether to search the current directory, or the current directory and all subdirectories. // Token: 0x020001C6 RID: 454 [ComVisible(true)] [Serializable] public enum SearchOption { /// Includes only the current directory in a search. // Token: 0x040006E7 RID: 1767 TopDirectoryOnly, /// Includes the current directory and all the subdirectories in a search operation. This option includes reparse points like mounted drives and symbolic links in the search. // Token: 0x040006E8 RID: 1768 AllDirectories } }