Files
Dec2017-Script-Dump/mscorlib/System/IO/SearchOption.cs
T
2026-06-04 11:42:34 +02:00

20 lines
677 B
C#

using System;
using System.Runtime.InteropServices;
namespace System.IO
{
/// <summary>Specifies whether to search the current directory, or the current directory and all subdirectories. </summary>
// Token: 0x020001C6 RID: 454
[ComVisible(true)]
[Serializable]
public enum SearchOption
{
/// <summary>Includes only the current directory in a search.</summary>
// Token: 0x040006E7 RID: 1767
TopDirectoryOnly,
/// <summary>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.</summary>
// Token: 0x040006E8 RID: 1768
AllDirectories
}
}