terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches
FileOptions.cs
Go to the documentation of this file.
1using System;
2
3namespace System.IO
4{
5 // Token: 0x02000536 RID: 1334
6 [Flags]
7 public enum FileOptions
8 {
9 // Token: 0x04001575 RID: 5493
10 None = 0,
11 // Token: 0x04001576 RID: 5494
12 WriteThrough = -2147483648,
13 // Token: 0x04001577 RID: 5495
14 Asynchronous = 1073741824,
15 // Token: 0x04001578 RID: 5496
16 RandomAccess = 268435456,
17 // Token: 0x04001579 RID: 5497
18 DeleteOnClose = 67108864,
19 // Token: 0x0400157A RID: 5498
20 SequentialScan = 134217728,
21 // Token: 0x0400157B RID: 5499
22 Encrypted = 16384
23 }
24}