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

◆ GetAccessControlSectionsFromChanges()

AccessControlSections System.IO.Pipes.PipeSecurity.GetAccessControlSectionsFromChanges ( )
inlineprivate

Definition at line 150 of file PipeSecurity.cs.

151 {
152 AccessControlSections accessControlSections = AccessControlSections.None;
153 if (base.AccessRulesModified)
154 {
155 accessControlSections = AccessControlSections.Access;
156 }
157 if (base.AuditRulesModified)
158 {
159 accessControlSections |= AccessControlSections.Audit;
160 }
161 if (base.OwnerModified)
162 {
163 accessControlSections |= AccessControlSections.Owner;
164 }
165 if (base.GroupModified)
166 {
167 accessControlSections |= AccessControlSections.Group;
168 }
169 return accessControlSections;
170 }

Referenced by System.IO.Pipes.PipeSecurity.Persist(), and System.IO.Pipes.PipeSecurity.Persist().