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