This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.IO
{
/// <summary>Defines constants for read, write, or read/write access to a file.</summary>
// Token: 0x020002B6 RID: 694
[Token(Token = "0x20002B6")]
[Flags]
[ComVisible(true)]
[Serializable]
public enum FileAccess
{
/// <summary>Read access to the file. Data can be read from the file. Combine with <see langword="Write" /> for read/write access.</summary>
// Token: 0x04000D62 RID: 3426
[Token(Token = "0x4000D62")]
Read = 1,
/// <summary>Write access to the file. Data can be written to the file. Combine with <see langword="Read" /> for read/write access.</summary>
// Token: 0x04000D63 RID: 3427
[Token(Token = "0x4000D63")]
Write = 2,
/// <summary>Read and write access to the file. Data can be written to and read from the file.</summary>
// Token: 0x04000D64 RID: 3428
[Token(Token = "0x4000D64")]
ReadWrite = 3
}
}