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

◆ PropagationFlags

PropagationFlags System.Security.AccessControl.GenericAce.PropagationFlags
getinherited

Definition at line 46 of file GenericAce.cs.

47 {
48 get
49 {
50 PropagationFlags propagationFlags = PropagationFlags.None;
51 if ((AceFlags & AceFlags.InheritOnly) != 0)
52 {
53 propagationFlags |= PropagationFlags.InheritOnly;
54 }
55 if ((AceFlags & AceFlags.NoPropagateInherit) != 0)
56 {
57 propagationFlags |= PropagationFlags.NoPropagateInherit;
58 }
59 return propagationFlags;
60 }
61 }

Referenced by System.Security.AccessControl.DirectoryObjectSecurity.GetRules(), and System.Security.AccessControl.CommonObjectSecurity.GetRules().