Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ PipeAccessRights

Enumerator
ReadData 
WriteData 
ReadAttributes 
WriteAttributes 
ReadExtendedAttributes 
WriteExtendedAttributes 
CreateNewInstance 
Delete 
ReadPermissions 
ChangePermissions 
TakeOwnership 
Synchronize 
FullControl 
Read 
Write 
ReadWrite 
AccessSystemSecurity 

Definition at line 4 of file PipeAccessRights.cs.

5{
6 ReadData = 1,
7 WriteData = 2,
8 ReadAttributes = 0x80,
9 WriteAttributes = 0x100,
10 ReadExtendedAttributes = 8,
11 WriteExtendedAttributes = 0x10,
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}