Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
FileOptions.cs
Go to the documentation of this file.
1namespace System.IO;
2
3[Flags]
4public enum FileOptions
5{
6 None = 0,
7 WriteThrough = int.MinValue,
8 Asynchronous = 0x40000000,
9 RandomAccess = 0x10000000,
10 DeleteOnClose = 0x4000000,
11 SequentialScan = 0x8000000,
12 Encrypted = 0x4000
13}