Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
PipeAccessRights.cs
Go to the documentation of this file.
1namespace System.IO.Pipes;
2
3[Flags]
4public enum PipeAccessRights
5{
6 ReadData = 1,
7 WriteData = 2,
8 ReadAttributes = 0x80,
9 WriteAttributes = 0x100,
13 Delete = 0x10000,
14 ReadPermissions = 0x20000,
15 ChangePermissions = 0x40000,
16 TakeOwnership = 0x80000,
17 Synchronize = 0x100000,
18 FullControl = 0x1F019F,
19 Read = 0x20089,
20 Write = 0x112,
21 ReadWrite = 0x2019B,
22 AccessSystemSecurity = 0x1000000
23}