This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
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
}
}