24 lines
803 B
C#
24 lines
803 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.IO
|
|
{
|
|
/// <summary>Specifies whether to search the current directory, or the current directory and all subdirectories.</summary>
|
|
// Token: 0x020002C4 RID: 708
|
|
[Token(Token = "0x20002C4")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public enum SearchOption
|
|
{
|
|
/// <summary>Includes only the current directory in a search operation.</summary>
|
|
// Token: 0x04000DDA RID: 3546
|
|
[Token(Token = "0x4000DDA")]
|
|
TopDirectoryOnly,
|
|
/// <summary>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.</summary>
|
|
// Token: 0x04000DDB RID: 3547
|
|
[Token(Token = "0x4000DDB")]
|
|
AllDirectories
|
|
}
|
|
}
|