Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

29 lines
956 B
C#

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
}
}