Revert "Bump Microsoft.NETCore.Platforms to 6.0.9"
[platform/core/csapi/tizenfx.git] / pkg / Tizen.NET.API11 / build / tizen11.0 / ref / System.Security.AccessControl.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <doc>
3   <assembly>
4     <name>System.Security.AccessControl</name>
5   </assembly>
6   <members>
7     <member name="T:System.Security.AccessControl.AccessControlActions">
8       <summary>Specifies the actions that are permitted for securable objects.</summary>
9     </member>
10     <member name="F:System.Security.AccessControl.AccessControlActions.Change">
11       <summary>Specifies write-only access.</summary>
12     </member>
13     <member name="F:System.Security.AccessControl.AccessControlActions.None">
14       <summary>Specifies no access.</summary>
15     </member>
16     <member name="F:System.Security.AccessControl.AccessControlActions.View">
17       <summary>Specifies read-only access.</summary>
18     </member>
19     <member name="T:System.Security.AccessControl.AccessControlModification">
20       <summary>Specifies the type of access control modification to perform. This enumeration is used by methods of the <see cref="T:System.Security.AccessControl.ObjectSecurity" /> class and its descendants.</summary>
21     </member>
22     <member name="F:System.Security.AccessControl.AccessControlModification.Add">
23       <summary>Add the specified authorization rule to the access control list (ACL).</summary>
24     </member>
25     <member name="F:System.Security.AccessControl.AccessControlModification.Remove">
26       <summary>Remove authorization rules that contain the same security identifier (SID) and access mask as the specified authorization rule from the ACL.</summary>
27     </member>
28     <member name="F:System.Security.AccessControl.AccessControlModification.RemoveAll">
29       <summary>Remove authorization rules that contain the same SID as the specified authorization rule from the ACL.</summary>
30     </member>
31     <member name="F:System.Security.AccessControl.AccessControlModification.RemoveSpecific">
32       <summary>Remove authorization rules that exactly match the specified authorization rule from the ACL.</summary>
33     </member>
34     <member name="F:System.Security.AccessControl.AccessControlModification.Reset">
35       <summary>Remove authorization rules that contain the same SID as the specified authorization rule from the ACL, and then add the specified authorization rule to the ACL.</summary>
36     </member>
37     <member name="F:System.Security.AccessControl.AccessControlModification.Set">
38       <summary>Remove all authorization rules from the ACL, then add the specified authorization rule to the ACL.</summary>
39     </member>
40     <member name="T:System.Security.AccessControl.AccessControlSections">
41       <summary>Specifies which sections of a security descriptor to save or load.</summary>
42     </member>
43     <member name="F:System.Security.AccessControl.AccessControlSections.Access">
44       <summary>The discretionary access control list (DACL).</summary>
45     </member>
46     <member name="F:System.Security.AccessControl.AccessControlSections.All">
47       <summary>The entire security descriptor.</summary>
48     </member>
49     <member name="F:System.Security.AccessControl.AccessControlSections.Audit">
50       <summary>The system access control list (SACL).</summary>
51     </member>
52     <member name="F:System.Security.AccessControl.AccessControlSections.Group">
53       <summary>The primary group.</summary>
54     </member>
55     <member name="F:System.Security.AccessControl.AccessControlSections.None">
56       <summary>No sections.</summary>
57     </member>
58     <member name="F:System.Security.AccessControl.AccessControlSections.Owner">
59       <summary>The owner.</summary>
60     </member>
61     <member name="T:System.Security.AccessControl.AccessControlType">
62       <summary>Specifies whether an <see cref="T:System.Security.AccessControl.AccessRule" /> object is used to allow or deny access. These values are not flags, and they cannot be combined.</summary>
63     </member>
64     <member name="F:System.Security.AccessControl.AccessControlType.Allow">
65       <summary>The <see cref="T:System.Security.AccessControl.AccessRule" /> object is used to allow access to a secured object.</summary>
66     </member>
67     <member name="F:System.Security.AccessControl.AccessControlType.Deny">
68       <summary>The <see cref="T:System.Security.AccessControl.AccessRule" /> object is used to deny access to a secured object.</summary>
69     </member>
70     <member name="T:System.Security.AccessControl.AccessRule">
71       <summary>Represents a combination of a user's identity, an access mask, and an access control type (allow or deny). An <see cref="T:System.Security.AccessControl.AccessRule" /> object also contains information about the how the rule is inherited by child objects and how that inheritance is propagated.</summary>
72     </member>
73     <member name="M:System.Security.AccessControl.AccessRule.#ctor(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)">
74       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.AccessRule" /> class by using the specified values.</summary>
75       <param name="identity">The identity to which the access rule applies. This parameter must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />.</param>
76       <param name="accessMask">The access mask of this rule. The access mask is a 32-bit collection of anonymous bits, the meaning of which is defined by the individual integrators.</param>
77       <param name="isInherited">
78         <see langword="true" /> if this rule is inherited from a parent container.</param>
79       <param name="inheritanceFlags">The inheritance properties of the access rule.</param>
80       <param name="propagationFlags">Whether inherited access rules are automatically propagated. The propagation flags are ignored if <paramref name="inheritanceFlags" /> is set to <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />.</param>
81       <param name="type">The valid access control type.</param>
82       <exception cref="T:System.ArgumentException">The value of the <paramref name="identity" /> parameter cannot be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />, or the <paramref name="type" /> parameter contains an invalid value.</exception>
83       <exception cref="T:System.ArgumentOutOfRangeException">The value of the <paramref name="accessMask" /> parameter is zero, or the <paramref name="inheritanceFlags" /> or <paramref name="propagationFlags" /> parameters contain unrecognized flag values.</exception>
84     </member>
85     <member name="P:System.Security.AccessControl.AccessRule.AccessControlType">
86       <summary>Gets the <see cref="T:System.Security.AccessControl.AccessControlType" /> value associated with this <see cref="T:System.Security.AccessControl.AccessRule" /> object.</summary>
87       <returns>The <see cref="T:System.Security.AccessControl.AccessControlType" /> value associated with this <see cref="T:System.Security.AccessControl.AccessRule" /> object.</returns>
88     </member>
89     <member name="T:System.Security.AccessControl.AccessRule`1">
90       <summary>Represents a combination of a user's identity, an access mask, and an access control type (allow or deny). An AccessRule`1 object also contains information about the how the rule is inherited by child objects and how that inheritance is propagated.</summary>
91       <typeparam name="T">The access rights type for the access rule.</typeparam>
92     </member>
93     <member name="M:System.Security.AccessControl.AccessRule`1.#ctor(System.Security.Principal.IdentityReference,`0,System.Security.AccessControl.AccessControlType)">
94       <summary>Initializes a new instance of the AccessRule'1 class by using the specified values.</summary>
95       <param name="identity">The identity to which the access rule applies.</param>
96       <param name="rights">The rights of the access rule.</param>
97       <param name="type">The valid access control type.</param>
98     </member>
99     <member name="M:System.Security.AccessControl.AccessRule`1.#ctor(System.Security.Principal.IdentityReference,`0,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)">
100       <summary>Initializes a new instance of the AccessRule'1 class by using the specified values.</summary>
101       <param name="identity">The identity to which the access rule applies.</param>
102       <param name="rights">The rights of the access rule.</param>
103       <param name="inheritanceFlags">The inheritance properties of the access rule.</param>
104       <param name="propagationFlags">Whether inherited access rules are automatically propagated. The propagation flags are ignored if <paramref name="inheritanceFlags" /> is set to <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />.</param>
105       <param name="type">The valid access control type.</param>
106     </member>
107     <member name="M:System.Security.AccessControl.AccessRule`1.#ctor(System.String,`0,System.Security.AccessControl.AccessControlType)">
108       <summary>Initializes a new instance of the AccessRule'1 class by using the specified values.</summary>
109       <param name="identity">The identity to which the access rule applies.</param>
110       <param name="rights">The rights of the access rule.</param>
111       <param name="type">The valid access control type.</param>
112     </member>
113     <member name="M:System.Security.AccessControl.AccessRule`1.#ctor(System.String,`0,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)">
114       <summary>Initializes a new instance of the AccessRule'1 class by using the specified values.</summary>
115       <param name="identity">The identity to which the access rule applies.</param>
116       <param name="rights">The rights of the access rule.</param>
117       <param name="inheritanceFlags">The inheritance properties of the access rule.</param>
118       <param name="propagationFlags">Whether inherited access rules are automatically propagated. The propagation flags are ignored if <paramref name="inheritanceFlags" /> is set to <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />.</param>
119       <param name="type">The valid access control type.</param>
120     </member>
121     <member name="P:System.Security.AccessControl.AccessRule`1.Rights">
122       <summary>Gets the rights of the current instance.</summary>
123       <returns>The rights, cast as type &lt;T&gt;, of the current instance.</returns>
124     </member>
125     <member name="T:System.Security.AccessControl.AceEnumerator">
126       <summary>Provides the ability to iterate through the access control entries (ACEs) in an access control list (ACL).</summary>
127     </member>
128     <member name="M:System.Security.AccessControl.AceEnumerator.MoveNext">
129       <summary>Advances the enumerator to the next element of the <see cref="T:System.Security.AccessControl.GenericAce" /> collection.</summary>
130       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
131       <returns>
132         <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
133     </member>
134     <member name="M:System.Security.AccessControl.AceEnumerator.Reset">
135       <summary>Sets the enumerator to its initial position, which is before the first element in the <see cref="T:System.Security.AccessControl.GenericAce" /> collection.</summary>
136       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
137     </member>
138     <member name="P:System.Security.AccessControl.AceEnumerator.Current">
139       <summary>Gets the current element in the <see cref="T:System.Security.AccessControl.GenericAce" /> collection. This property gets the type-friendly version of the object.</summary>
140       <returns>The current element in the <see cref="T:System.Security.AccessControl.GenericAce" /> collection.</returns>
141     </member>
142     <member name="P:System.Security.AccessControl.AceEnumerator.System#Collections#IEnumerator#Current">
143       <summary>Gets the current element in the collection.</summary>
144       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
145       <returns>The current element in the collection.</returns>
146     </member>
147     <member name="T:System.Security.AccessControl.AceFlags">
148       <summary>Specifies the inheritance and auditing behavior of an access control entry (ACE).</summary>
149     </member>
150     <member name="F:System.Security.AccessControl.AceFlags.AuditFlags">
151       <summary>All access attempts are audited.</summary>
152     </member>
153     <member name="F:System.Security.AccessControl.AceFlags.ContainerInherit">
154       <summary>The access mask is propagated to child container objects.</summary>
155     </member>
156     <member name="F:System.Security.AccessControl.AceFlags.FailedAccess">
157       <summary>Failed access attempts are audited.</summary>
158     </member>
159     <member name="F:System.Security.AccessControl.AceFlags.InheritanceFlags">
160       <summary>A logical <see langword="OR" /> of <see cref="F:System.Security.AccessControl.AceFlags.ObjectInherit" />, <see cref="F:System.Security.AccessControl.AceFlags.ContainerInherit" />, <see cref="F:System.Security.AccessControl.AceFlags.NoPropagateInherit" />, and <see cref="F:System.Security.AccessControl.AceFlags.InheritOnly" />.</summary>
161     </member>
162     <member name="F:System.Security.AccessControl.AceFlags.Inherited">
163       <summary>An ACE is inherited from a parent container rather than being explicitly set for an object.</summary>
164     </member>
165     <member name="F:System.Security.AccessControl.AceFlags.InheritOnly">
166       <summary>The access mask is propagated only to child objects. This includes both container and leaf child objects.</summary>
167     </member>
168     <member name="F:System.Security.AccessControl.AceFlags.None">
169       <summary>No ACE flags are set.</summary>
170     </member>
171     <member name="F:System.Security.AccessControl.AceFlags.NoPropagateInherit">
172       <summary>The access checks do not apply to the object; they only apply to its children.</summary>
173     </member>
174     <member name="F:System.Security.AccessControl.AceFlags.ObjectInherit">
175       <summary>The access mask is propagated onto child leaf objects.</summary>
176     </member>
177     <member name="F:System.Security.AccessControl.AceFlags.SuccessfulAccess">
178       <summary>Successful access attempts are audited.</summary>
179     </member>
180     <member name="T:System.Security.AccessControl.AceQualifier">
181       <summary>Specifies the function of an access control entry (ACE).</summary>
182     </member>
183     <member name="F:System.Security.AccessControl.AceQualifier.AccessAllowed">
184       <summary>Allow access.</summary>
185     </member>
186     <member name="F:System.Security.AccessControl.AceQualifier.AccessDenied">
187       <summary>Deny access.</summary>
188     </member>
189     <member name="F:System.Security.AccessControl.AceQualifier.SystemAlarm">
190       <summary>Cause a system alarm.</summary>
191     </member>
192     <member name="F:System.Security.AccessControl.AceQualifier.SystemAudit">
193       <summary>Cause a system audit.</summary>
194     </member>
195     <member name="T:System.Security.AccessControl.AceType">
196       <summary>Defines the available access control entry (ACE) types.</summary>
197     </member>
198     <member name="F:System.Security.AccessControl.AceType.AccessAllowed">
199       <summary>Allows access to an object for a specific trustee identified by an <see cref="T:System.Security.Principal.IdentityReference" /> object.</summary>
200     </member>
201     <member name="F:System.Security.AccessControl.AceType.AccessAllowedCallback">
202       <summary>Allows access to an object for a specific trustee identified by an <see cref="T:System.Security.Principal.IdentityReference" /> object. This ACE type may contain optional callback data. The callback data is a resource manager-specific BLOB that is not interpreted.</summary>
203     </member>
204     <member name="F:System.Security.AccessControl.AceType.AccessAllowedCallbackObject">
205       <summary>Allows access to an object, property set, or property. The ACE contains a set of access rights, a GUID that identifies the type of object, and an <see cref="T:System.Security.Principal.IdentityReference" /> object that identifies the trustee to whom the system will grant access. The ACE also contains a GUID and a set of flags that control inheritance of the ACE by child objects. This ACE type may contain optional callback data. The callback data is a resource manager-specific BLOB that is not interpreted.</summary>
206     </member>
207     <member name="F:System.Security.AccessControl.AceType.AccessAllowedCompound">
208       <summary>Defined but never used. Included here for completeness.</summary>
209     </member>
210     <member name="F:System.Security.AccessControl.AceType.AccessAllowedObject">
211       <summary>Allows access to an object, property set, or property. The ACE contains a set of access rights, a GUID that identifies the type of object, and an <see cref="T:System.Security.Principal.IdentityReference" /> object that identifies the trustee to whom the system will grant access. The ACE also contains a GUID and a set of flags that control inheritance of the ACE by child objects.</summary>
212     </member>
213     <member name="F:System.Security.AccessControl.AceType.AccessDenied">
214       <summary>Denies access to an object for a specific trustee identified by an <see cref="T:System.Security.Principal.IdentityReference" /> object.</summary>
215     </member>
216     <member name="F:System.Security.AccessControl.AceType.AccessDeniedCallback">
217       <summary>Denies access to an object for a specific trustee identified by an <see cref="T:System.Security.Principal.IdentityReference" /> object. This ACE type can contain optional callback data. The callback data is a resource manager-specific BLOB that is not interpreted.</summary>
218     </member>
219     <member name="F:System.Security.AccessControl.AceType.AccessDeniedCallbackObject">
220       <summary>Denies access to an object, property set, or property. The ACE contains a set of access rights, a GUID that identifies the type of object, and an <see cref="T:System.Security.Principal.IdentityReference" /> object that identifies the trustee to whom the system will grant access. The ACE also contains a GUID and a set of flags that control inheritance of the ACE by child objects. This ACE type can contain optional callback data. The callback data is a resource manager-specific BLOB that is not interpreted.</summary>
221     </member>
222     <member name="F:System.Security.AccessControl.AceType.AccessDeniedObject">
223       <summary>Denies access to an object, property set, or property. The ACE contains a set of access rights, a GUID that identifies the type of object, and an <see cref="T:System.Security.Principal.IdentityReference" /> object that identifies the trustee to whom the system will grant access. The ACE also contains a GUID and a set of flags that control inheritance of the ACE by child objects.</summary>
224     </member>
225     <member name="F:System.Security.AccessControl.AceType.MaxDefinedAceType">
226       <summary>Tracks the maximum defined ACE type in the enumeration.</summary>
227     </member>
228     <member name="F:System.Security.AccessControl.AceType.SystemAlarm">
229       <summary>Reserved for future use.</summary>
230     </member>
231     <member name="F:System.Security.AccessControl.AceType.SystemAlarmCallback">
232       <summary>Reserved for future use.</summary>
233     </member>
234     <member name="F:System.Security.AccessControl.AceType.SystemAlarmCallbackObject">
235       <summary>Reserved for future use.</summary>
236     </member>
237     <member name="F:System.Security.AccessControl.AceType.SystemAlarmObject">
238       <summary>Reserved for future use.</summary>
239     </member>
240     <member name="F:System.Security.AccessControl.AceType.SystemAudit">
241       <summary>Causes an audit message to be logged when a specified trustee attempts to gain access to an object. The trustee is identified by an <see cref="T:System.Security.Principal.IdentityReference" /> object.</summary>
242     </member>
243     <member name="F:System.Security.AccessControl.AceType.SystemAuditCallback">
244       <summary>Causes an audit message to be logged when a specified trustee attempts to gain access to an object. The trustee is identified by an <see cref="T:System.Security.Principal.IdentityReference" /> object. This ACE type can contain optional callback data. The callback data is a resource manager-specific BLOB that is not interpreted.</summary>
245     </member>
246     <member name="F:System.Security.AccessControl.AceType.SystemAuditCallbackObject">
247       <summary>Causes an audit message to be logged when a specified trustee attempts to gain access to an object or subobjects such as property sets or properties. The ACE contains a set of access rights, a GUID that identifies the type of object or subobject, and an <see cref="T:System.Security.Principal.IdentityReference" /> object that identifies the trustee for whom the system will audit access. The ACE also contains a GUID and a set of flags that control inheritance of the ACE by child objects. This ACE type can contain optional callback data. The callback data is a resource manager-specific BLOB that is not interpreted.</summary>
248     </member>
249     <member name="F:System.Security.AccessControl.AceType.SystemAuditObject">
250       <summary>Causes an audit message to be logged when a specified trustee attempts to gain access to an object or subobjects such as property sets or properties. The ACE contains a set of access rights, a GUID that identifies the type of object or subobject, and an <see cref="T:System.Security.Principal.IdentityReference" /> object that identifies the trustee for whom the system will audit access. The ACE also contains a GUID and a set of flags that control inheritance of the ACE by child objects.</summary>
251     </member>
252     <member name="T:System.Security.AccessControl.AuditFlags">
253       <summary>Specifies the conditions for auditing attempts to access a securable object.</summary>
254     </member>
255     <member name="F:System.Security.AccessControl.AuditFlags.Failure">
256       <summary>Failed access attempts are to be audited.</summary>
257     </member>
258     <member name="F:System.Security.AccessControl.AuditFlags.None">
259       <summary>No access attempts are to be audited.</summary>
260     </member>
261     <member name="F:System.Security.AccessControl.AuditFlags.Success">
262       <summary>Successful access attempts are to be audited.</summary>
263     </member>
264     <member name="T:System.Security.AccessControl.AuditRule">
265       <summary>Represents a combination of a user's identity and an access mask. An <see cref="T:System.Security.AccessControl.AuditRule" /> object also contains information about how the rule is inherited by child objects, how that inheritance is propagated, and for what conditions it is audited.</summary>
266     </member>
267     <member name="M:System.Security.AccessControl.AuditRule.#ctor(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)">
268       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.AuditRule" /> class by using the specified values.</summary>
269       <param name="identity">The identity to which the audit rule applies. It must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />.</param>
270       <param name="accessMask">The access mask of this rule. The access mask is a 32-bit collection of anonymous bits, the meaning of which is defined by the individual integrators.</param>
271       <param name="isInherited">
272         <see langword="true" /> to inherit this rule from a parent container.</param>
273       <param name="inheritanceFlags">The inheritance properties of the audit rule.</param>
274       <param name="propagationFlags">Whether inherited audit rules are automatically propagated. The propagation flags are ignored if <paramref name="inheritanceFlags" /> is set to <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />.</param>
275       <param name="auditFlags">The conditions for which the rule is audited.</param>
276       <exception cref="T:System.ArgumentException">The value of the <paramref name="identity" /> parameter cannot be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />, or the <paramref name="auditFlags" /> parameter contains an invalid value.</exception>
277       <exception cref="T:System.ArgumentOutOfRangeException">The value of the <paramref name="accessMask" /> parameter is zero, or the <paramref name="inheritanceFlags" /> or <paramref name="propagationFlags" /> parameters contain unrecognized flag values.</exception>
278     </member>
279     <member name="P:System.Security.AccessControl.AuditRule.AuditFlags">
280       <summary>Gets the audit flags for this audit rule.</summary>
281       <returns>A bitwise combination of the enumeration values. This combination specifies the audit conditions for this audit rule.</returns>
282     </member>
283     <member name="T:System.Security.AccessControl.AuditRule`1">
284       <summary>Represents a combination of a user's identity and an access mask.</summary>
285       <typeparam name="T">The type of the audit rule.</typeparam>
286     </member>
287     <member name="M:System.Security.AccessControl.AuditRule`1.#ctor(System.Security.Principal.IdentityReference,`0,System.Security.AccessControl.AuditFlags)">
288       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.AuditRule`1" /> class by using the specified values.</summary>
289       <param name="identity">The identity to which this audit rule applies.</param>
290       <param name="rights">The rights of the audit rule.</param>
291       <param name="flags">The conditions for which the rule is audited.</param>
292     </member>
293     <member name="M:System.Security.AccessControl.AuditRule`1.#ctor(System.Security.Principal.IdentityReference,`0,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)">
294       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.AuditRule`1" /> class by using the specified values.</summary>
295       <param name="identity">The identity to which the audit rule applies.</param>
296       <param name="rights">The rights of the audit rule.</param>
297       <param name="inheritanceFlags">The inheritance properties of the audit rule.</param>
298       <param name="propagationFlags">Whether inherited audit rules are automatically propagated.</param>
299       <param name="flags">The conditions for which the rule is audited.</param>
300     </member>
301     <member name="M:System.Security.AccessControl.AuditRule`1.#ctor(System.String,`0,System.Security.AccessControl.AuditFlags)">
302       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.AuditRule`1" /> class by using the specified values.</summary>
303       <param name="identity">The identity to which the audit rule applies.</param>
304       <param name="rights">The rights of the audit rule.</param>
305       <param name="flags">The properties of the audit rule.</param>
306     </member>
307     <member name="M:System.Security.AccessControl.AuditRule`1.#ctor(System.String,`0,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)">
308       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.AuditRule`1" /> class by using the specified values.</summary>
309       <param name="identity">The identity to which the audit rule applies.</param>
310       <param name="rights">The rights of the audit rule.</param>
311       <param name="inheritanceFlags">The inheritance properties of the audit rule.</param>
312       <param name="propagationFlags">Whether inherited audit rules are automatically propagated.</param>
313       <param name="flags">The conditions for which the rule is audited.</param>
314     </member>
315     <member name="P:System.Security.AccessControl.AuditRule`1.Rights">
316       <summary>Gets the rights of the audit rule.</summary>
317       <returns>The rights of the audit rule.</returns>
318     </member>
319     <member name="T:System.Security.AccessControl.AuthorizationRule">
320       <summary>Determines access to securable objects. The derived classes <see cref="T:System.Security.AccessControl.AccessRule" /> and <see cref="T:System.Security.AccessControl.AuditRule" /> offer specializations for access and audit functionality.</summary>
321     </member>
322     <member name="M:System.Security.AccessControl.AuthorizationRule.#ctor(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags)">
323       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.AccessRule" /> class by using the specified values.</summary>
324       <param name="identity">The identity to which the access rule applies. This parameter must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />.</param>
325       <param name="accessMask">The access mask of this rule. The access mask is a 32-bit collection of anonymous bits, the meaning of which is defined by the individual integrators.</param>
326       <param name="isInherited">
327         <see langword="true" /> to inherit this rule from a parent container.</param>
328       <param name="inheritanceFlags">The inheritance properties of the access rule.</param>
329       <param name="propagationFlags">Whether inherited access rules are automatically propagated. The propagation flags are ignored if <paramref name="inheritanceFlags" /> is set to <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />.</param>
330       <exception cref="T:System.ArgumentException">The value of the <paramref name="identity" /> parameter cannot be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />.</exception>
331       <exception cref="T:System.ArgumentOutOfRangeException">The value of the <paramref name="accessMask" /> parameter is zero, or the <paramref name="inheritanceFlags" /> or <paramref name="propagationFlags" /> parameters contain unrecognized flag values.</exception>
332     </member>
333     <member name="P:System.Security.AccessControl.AuthorizationRule.AccessMask">
334       <summary>Gets the access mask for this rule.</summary>
335       <returns>The access mask for this rule.</returns>
336     </member>
337     <member name="P:System.Security.AccessControl.AuthorizationRule.IdentityReference">
338       <summary>Gets the <see cref="T:System.Security.Principal.IdentityReference" /> to which this rule applies.</summary>
339       <returns>The <see cref="T:System.Security.Principal.IdentityReference" /> to which this rule applies.</returns>
340     </member>
341     <member name="P:System.Security.AccessControl.AuthorizationRule.InheritanceFlags">
342       <summary>Gets the value of flags that determine how this rule is inherited by child objects.</summary>
343       <returns>A bitwise combination of the enumeration values.</returns>
344     </member>
345     <member name="P:System.Security.AccessControl.AuthorizationRule.IsInherited">
346       <summary>Gets a value indicating whether this rule is explicitly set or is inherited from a parent container object.</summary>
347       <returns>
348         <see langword="true" /> if this rule is not explicitly set but is instead inherited from a parent container.</returns>
349     </member>
350     <member name="P:System.Security.AccessControl.AuthorizationRule.PropagationFlags">
351       <summary>Gets the value of the propagation flags, which determine how inheritance of this rule is propagated to child objects. This property is significant only when the value of the <see cref="T:System.Security.AccessControl.InheritanceFlags" /> enumeration is not <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />.</summary>
352       <returns>A bitwise combination of the enumeration values.</returns>
353     </member>
354     <member name="T:System.Security.AccessControl.AuthorizationRuleCollection">
355       <summary>Represents a collection of <see cref="T:System.Security.AccessControl.AuthorizationRule" /> objects.</summary>
356     </member>
357     <member name="M:System.Security.AccessControl.AuthorizationRuleCollection.#ctor">
358       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.AuthorizationRuleCollection" /> class.</summary>
359     </member>
360     <member name="M:System.Security.AccessControl.AuthorizationRuleCollection.AddRule(System.Security.AccessControl.AuthorizationRule)">
361       <summary>Adds an <see cref="T:System.Security.AccessControl.AuthorizationRule" /> object to the collection.</summary>
362       <param name="rule">The <see cref="T:System.Security.AccessControl.AuthorizationRule" /> object to add to the collection.</param>
363     </member>
364     <member name="M:System.Security.AccessControl.AuthorizationRuleCollection.CopyTo(System.Security.AccessControl.AuthorizationRule[],System.Int32)">
365       <summary>Copies the contents of the collection to an array.</summary>
366       <param name="rules">An array to which to copy the contents of the collection.</param>
367       <param name="index">The zero-based index from which to begin copying.</param>
368     </member>
369     <member name="P:System.Security.AccessControl.AuthorizationRuleCollection.Item(System.Int32)">
370       <summary>Gets the <see cref="T:System.Security.AccessControl.AuthorizationRule" /> object at the specified index of the collection.</summary>
371       <param name="index">The zero-based index of the <see cref="T:System.Security.AccessControl.AuthorizationRule" /> object to get.</param>
372       <returns>The <see cref="T:System.Security.AccessControl.AuthorizationRule" /> object at the specified index.</returns>
373     </member>
374     <member name="T:System.Security.AccessControl.CommonAce">
375       <summary>Represents an access control entry (ACE).</summary>
376     </member>
377     <member name="M:System.Security.AccessControl.CommonAce.#ctor(System.Security.AccessControl.AceFlags,System.Security.AccessControl.AceQualifier,System.Int32,System.Security.Principal.SecurityIdentifier,System.Boolean,System.Byte[])">
378       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.CommonAce" /> class.</summary>
379       <param name="flags">Flags that specify information about the inheritance, inheritance propagation, and auditing conditions for the new access control entry (ACE).</param>
380       <param name="qualifier">The use of the new ACE.</param>
381       <param name="accessMask">The access mask for the ACE.</param>
382       <param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> associated with the new ACE.</param>
383       <param name="isCallback">
384         <see langword="true" /> to specify that the new ACE is a callback type ACE.</param>
385       <param name="opaque">Opaque data associated with the new ACE. Opaque data is allowed only for callback ACE types. The length of this array must not be greater than the return value of the <see cref="M:System.Security.AccessControl.CommonAce.MaxOpaqueLength(System.Boolean)" /> method.</param>
386     </member>
387     <member name="M:System.Security.AccessControl.CommonAce.GetBinaryForm(System.Byte[],System.Int32)">
388       <summary>Marshals the contents of the <see cref="T:System.Security.AccessControl.CommonAce" /> object into the specified byte array beginning at the specified offset.</summary>
389       <param name="binaryForm">The byte array into which the contents of the <see cref="T:System.Security.AccessControl.CommonAce" /> object is marshaled.</param>
390       <param name="offset">The offset at which to start marshaling.</param>
391       <exception cref="T:System.ArgumentOutOfRangeException">
392         <paramref name="offset" /> is negative or too high to allow the entire <see cref="T:System.Security.AccessControl.CommonAce" /> to be copied into the <paramref name="binaryForm" /> array.</exception>
393     </member>
394     <member name="M:System.Security.AccessControl.CommonAce.MaxOpaqueLength(System.Boolean)">
395       <summary>Gets the maximum allowed length of an opaque data BLOB for callback access control entries (ACEs).</summary>
396       <param name="isCallback">
397         <see langword="true" /> to specify that the <see cref="T:System.Security.AccessControl.CommonAce" /> object is a callback ACE type.</param>
398       <returns>The allowed length of an opaque data BLOB.</returns>
399     </member>
400     <member name="P:System.Security.AccessControl.CommonAce.BinaryLength">
401       <summary>Gets the length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.CommonAce" /> object. Use this length with the <see cref="M:System.Security.AccessControl.CommonAce.GetBinaryForm(System.Byte[],System.Int32)" /> method before marshaling the ACL into a binary array.</summary>
402       <returns>The length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.CommonAce" /> object.</returns>
403     </member>
404     <member name="T:System.Security.AccessControl.CommonAcl">
405       <summary>Represents an access control list (ACL) and is the base class for the <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> and <see cref="T:System.Security.AccessControl.SystemAcl" /> classes.</summary>
406     </member>
407     <member name="M:System.Security.AccessControl.CommonAcl.GetBinaryForm(System.Byte[],System.Int32)">
408       <summary>Marshals the contents of the <see cref="T:System.Security.AccessControl.CommonAcl" /> object into the specified byte array beginning at the specified offset.</summary>
409       <param name="binaryForm">The byte array into which the contents of the <see cref="T:System.Security.AccessControl.CommonAcl" /> is marshaled.</param>
410       <param name="offset">The offset at which to start marshaling.</param>
411     </member>
412     <member name="M:System.Security.AccessControl.CommonAcl.Purge(System.Security.Principal.SecurityIdentifier)">
413       <summary>Removes all access control entries (ACEs) contained by this <see cref="T:System.Security.AccessControl.CommonAcl" /> object that are associated with the specified <see cref="T:System.Security.Principal.SecurityIdentifier" /> object.</summary>
414       <param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> object to check for.</param>
415     </member>
416     <member name="M:System.Security.AccessControl.CommonAcl.RemoveInheritedAces">
417       <summary>Removes all inherited access control entries (ACEs) from this <see cref="T:System.Security.AccessControl.CommonAcl" /> object.</summary>
418     </member>
419     <member name="P:System.Security.AccessControl.CommonAcl.BinaryLength">
420       <summary>Gets the length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.CommonAcl" /> object. This length should be used before marshaling the access control list (ACL) into a binary array by using the <see cref="M:System.Security.AccessControl.CommonAcl.GetBinaryForm(System.Byte[],System.Int32)" /> method.</summary>
421       <returns>The length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.CommonAcl" /> object.</returns>
422     </member>
423     <member name="P:System.Security.AccessControl.CommonAcl.Count">
424       <summary>Gets the number of access control entries (ACEs) in the current <see cref="T:System.Security.AccessControl.CommonAcl" /> object.</summary>
425       <returns>The number of ACEs in the current <see cref="T:System.Security.AccessControl.CommonAcl" /> object.</returns>
426     </member>
427     <member name="P:System.Security.AccessControl.CommonAcl.IsCanonical">
428       <summary>Gets a Boolean value that specifies whether the access control entries (ACEs) in the current <see cref="T:System.Security.AccessControl.CommonAcl" /> object are in canonical order.</summary>
429       <returns>
430         <see langword="true" /> if the ACEs in the current <see cref="T:System.Security.AccessControl.CommonAcl" /> object are in canonical order; otherwise, <see langword="false" />.</returns>
431     </member>
432     <member name="P:System.Security.AccessControl.CommonAcl.IsContainer">
433       <summary>Sets whether the <see cref="T:System.Security.AccessControl.CommonAcl" /> object is a container.</summary>
434       <returns>
435         <see langword="true" /> if the current <see cref="T:System.Security.AccessControl.CommonAcl" /> object is a container.</returns>
436     </member>
437     <member name="P:System.Security.AccessControl.CommonAcl.IsDS">
438       <summary>Sets whether the current <see cref="T:System.Security.AccessControl.CommonAcl" /> object is a directory object access control list (ACL).</summary>
439       <returns>
440         <see langword="true" /> if the current <see cref="T:System.Security.AccessControl.CommonAcl" /> object is a directory object ACL.</returns>
441     </member>
442     <member name="P:System.Security.AccessControl.CommonAcl.Item(System.Int32)">
443       <summary>Gets or sets the <see cref="T:System.Security.AccessControl.CommonAce" /> at the specified index.</summary>
444       <param name="index">The zero-based index of the <see cref="T:System.Security.AccessControl.CommonAce" /> to get or set.</param>
445       <returns>The <see cref="T:System.Security.AccessControl.CommonAce" /> at the specified index.</returns>
446     </member>
447     <member name="P:System.Security.AccessControl.CommonAcl.Revision">
448       <summary>Gets the revision level of the <see cref="T:System.Security.AccessControl.CommonAcl" />.</summary>
449       <returns>A byte value that specifies the revision level of the <see cref="T:System.Security.AccessControl.CommonAcl" />.</returns>
450     </member>
451     <member name="T:System.Security.AccessControl.CommonObjectSecurity">
452       <summary>Controls access to objects without direct manipulation of access control lists (ACLs). This class is the abstract base class for the <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> class.</summary>
453     </member>
454     <member name="M:System.Security.AccessControl.CommonObjectSecurity.#ctor(System.Boolean)">
455       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> class.</summary>
456       <param name="isContainer">
457         <see langword="true" /> if the new object is a container object.</param>
458     </member>
459     <member name="M:System.Security.AccessControl.CommonObjectSecurity.AddAccessRule(System.Security.AccessControl.AccessRule)">
460       <summary>Adds the specified access rule to the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object.</summary>
461       <param name="rule">The access rule to add.</param>
462     </member>
463     <member name="M:System.Security.AccessControl.CommonObjectSecurity.AddAuditRule(System.Security.AccessControl.AuditRule)">
464       <summary>Adds the specified audit rule to the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object.</summary>
465       <param name="rule">The audit rule to add.</param>
466     </member>
467     <member name="M:System.Security.AccessControl.CommonObjectSecurity.GetAccessRules(System.Boolean,System.Boolean,System.Type)">
468       <summary>Gets a collection of the access rules associated with the specified security identifier.</summary>
469       <param name="includeExplicit">
470         <see langword="true" /> to include access rules explicitly set for the object.</param>
471       <param name="includeInherited">
472         <see langword="true" /> to include inherited access rules.</param>
473       <param name="targetType">Specifies whether the security identifier for which to retrieve access rules is of type <see cref="T:System.Security.Principal.SecurityIdentifier" /> or type <see cref="T:System.Security.Principal.NTAccount" />. The value of this parameter must be a type that can be translated to  the <see cref="T:System.Security.Principal.SecurityIdentifier" /> type.</param>
474       <returns>The collection of access rules associated with the specified <see cref="T:System.Security.Principal.SecurityIdentifier" /> object.</returns>
475     </member>
476     <member name="M:System.Security.AccessControl.CommonObjectSecurity.GetAuditRules(System.Boolean,System.Boolean,System.Type)">
477       <summary>Gets a collection of the audit rules associated with the specified security identifier.</summary>
478       <param name="includeExplicit">
479         <see langword="true" /> to include audit rules explicitly set for the object.</param>
480       <param name="includeInherited">
481         <see langword="true" /> to include inherited audit rules.</param>
482       <param name="targetType">The security identifier for which to retrieve audit rules. This must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" /> object.</param>
483       <returns>The collection of audit rules associated with the specified <see cref="T:System.Security.Principal.SecurityIdentifier" /> object.</returns>
484     </member>
485     <member name="M:System.Security.AccessControl.CommonObjectSecurity.ModifyAccess(System.Security.AccessControl.AccessControlModification,System.Security.AccessControl.AccessRule,System.Boolean@)">
486       <summary>Applies the specified modification to the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object.</summary>
487       <param name="modification">The modification to apply to the DACL.</param>
488       <param name="rule">The access rule to modify.</param>
489       <param name="modified">
490         <see langword="true" /> if the DACL is successfully modified; otherwise, <see langword="false" />.</param>
491       <returns>
492         <see langword="true" /> if the DACL is successfully modified; otherwise, <see langword="false" />.</returns>
493     </member>
494     <member name="M:System.Security.AccessControl.CommonObjectSecurity.ModifyAudit(System.Security.AccessControl.AccessControlModification,System.Security.AccessControl.AuditRule,System.Boolean@)">
495       <summary>Applies the specified modification to the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object.</summary>
496       <param name="modification">The modification to apply to the SACL.</param>
497       <param name="rule">The audit rule to modify.</param>
498       <param name="modified">
499         <see langword="true" /> if the SACL is successfully modified; otherwise, <see langword="false" />.</param>
500       <returns>
501         <see langword="true" /> if the SACL is successfully modified; otherwise, <see langword="false" />.</returns>
502     </member>
503     <member name="M:System.Security.AccessControl.CommonObjectSecurity.RemoveAccessRule(System.Security.AccessControl.AccessRule)">
504       <summary>Removes access rules that contain the same security identifier and access mask as the specified access rule from the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object.</summary>
505       <param name="rule">The access rule to remove.</param>
506       <returns>
507         <see langword="true" /> if the access rule was successfully removed; otherwise, <see langword="false" />.</returns>
508     </member>
509     <member name="M:System.Security.AccessControl.CommonObjectSecurity.RemoveAccessRuleAll(System.Security.AccessControl.AccessRule)">
510       <summary>Removes all access rules that have the same security identifier as the specified access rule from the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object.</summary>
511       <param name="rule">The access rule to remove.</param>
512     </member>
513     <member name="M:System.Security.AccessControl.CommonObjectSecurity.RemoveAccessRuleSpecific(System.Security.AccessControl.AccessRule)">
514       <summary>Removes all access rules that exactly match the specified access rule from the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object.</summary>
515       <param name="rule">The access rule to remove.</param>
516     </member>
517     <member name="M:System.Security.AccessControl.CommonObjectSecurity.RemoveAuditRule(System.Security.AccessControl.AuditRule)">
518       <summary>Removes audit rules that contain the same security identifier and access mask as the specified audit rule from the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object.</summary>
519       <param name="rule">The audit rule to remove.</param>
520       <returns>
521         <see langword="true" /> if the audit rule was successfully removed; otherwise, <see langword="false" />.</returns>
522     </member>
523     <member name="M:System.Security.AccessControl.CommonObjectSecurity.RemoveAuditRuleAll(System.Security.AccessControl.AuditRule)">
524       <summary>Removes all audit rules that have the same security identifier as the specified audit rule from the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object.</summary>
525       <param name="rule">The audit rule to remove.</param>
526     </member>
527     <member name="M:System.Security.AccessControl.CommonObjectSecurity.RemoveAuditRuleSpecific(System.Security.AccessControl.AuditRule)">
528       <summary>Removes all audit rules that exactly match the specified audit rule from the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object.</summary>
529       <param name="rule">The audit rule to remove.</param>
530     </member>
531     <member name="M:System.Security.AccessControl.CommonObjectSecurity.ResetAccessRule(System.Security.AccessControl.AccessRule)">
532       <summary>Removes all access rules in the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object and then adds the specified access rule.</summary>
533       <param name="rule">The access rule to reset.</param>
534     </member>
535     <member name="M:System.Security.AccessControl.CommonObjectSecurity.SetAccessRule(System.Security.AccessControl.AccessRule)">
536       <summary>Removes all access rules that contain the same security identifier and qualifier as the specified access rule in the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object and then adds the specified access rule.</summary>
537       <param name="rule">The access rule to set.</param>
538     </member>
539     <member name="M:System.Security.AccessControl.CommonObjectSecurity.SetAuditRule(System.Security.AccessControl.AuditRule)">
540       <summary>Removes all audit rules that contain the same security identifier and qualifier as the specified audit rule in the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object and then adds the specified audit rule.</summary>
541       <param name="rule">The audit rule to set.</param>
542     </member>
543     <member name="T:System.Security.AccessControl.CommonSecurityDescriptor">
544       <summary>Represents a security descriptor. A security descriptor includes an owner, a primary group, a Discretionary Access Control List (DACL), and a System Access Control List (SACL).</summary>
545     </member>
546     <member name="M:System.Security.AccessControl.CommonSecurityDescriptor.#ctor(System.Boolean,System.Boolean,System.Byte[],System.Int32)">
547       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> class from the specified array of byte values.</summary>
548       <param name="isContainer">
549         <see langword="true" /> if the new security descriptor is associated with a container object.</param>
550       <param name="isDS">
551         <see langword="true" /> if the new security descriptor is associated with a directory object.</param>
552       <param name="binaryForm">The array of byte values from which to create the new <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</param>
553       <param name="offset">The offset in the <paramref name="binaryForm" /> array at which to begin copying.</param>
554     </member>
555     <member name="M:System.Security.AccessControl.CommonSecurityDescriptor.#ctor(System.Boolean,System.Boolean,System.Security.AccessControl.ControlFlags,System.Security.Principal.SecurityIdentifier,System.Security.Principal.SecurityIdentifier,System.Security.AccessControl.SystemAcl,System.Security.AccessControl.DiscretionaryAcl)">
556       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> class from the specified information.</summary>
557       <param name="isContainer">
558         <see langword="true" /> if the new security descriptor is associated with a container object.</param>
559       <param name="isDS">
560         <see langword="true" /> if the new security descriptor is associated with a directory object.</param>
561       <param name="flags">Flags that specify behavior of the new <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</param>
562       <param name="owner">The owner for the new <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</param>
563       <param name="group">The primary group for the new <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</param>
564       <param name="systemAcl">The System Access Control List (SACL) for the new <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</param>
565       <param name="discretionaryAcl">The Discretionary Access Control List (DACL) for the new <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</param>
566     </member>
567     <member name="M:System.Security.AccessControl.CommonSecurityDescriptor.#ctor(System.Boolean,System.Boolean,System.Security.AccessControl.RawSecurityDescriptor)">
568       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> class from the specified <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object.</summary>
569       <param name="isContainer">
570         <see langword="true" /> if the new security descriptor is associated with a container object.</param>
571       <param name="isDS">
572         <see langword="true" /> if the new security descriptor is associated with a directory object.</param>
573       <param name="rawSecurityDescriptor">The <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object from which to create the new <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</param>
574     </member>
575     <member name="M:System.Security.AccessControl.CommonSecurityDescriptor.#ctor(System.Boolean,System.Boolean,System.String)">
576       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> class from the specified Security Descriptor Definition Language (SDDL) string.</summary>
577       <param name="isContainer">
578         <see langword="true" /> if the new security descriptor is associated with a container object.</param>
579       <param name="isDS">
580         <see langword="true" /> if the new security descriptor is associated with a directory object.</param>
581       <param name="sddlForm">The SDDL string from which to create the new <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</param>
582     </member>
583     <member name="M:System.Security.AccessControl.CommonSecurityDescriptor.AddDiscretionaryAcl(System.Byte,System.Int32)">
584       <summary>Sets the <see cref="P:System.Security.AccessControl.CommonSecurityDescriptor.DiscretionaryAcl" /> property for this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> instance and sets the <see cref="F:System.Security.AccessControl.ControlFlags.DiscretionaryAclPresent" /> flag.</summary>
585       <param name="revision">The revision level of the new <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object.</param>
586       <param name="trusted">The number of Access Control Entries (ACEs) this <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object can contain. This number is to be used only as a hint.</param>
587     </member>
588     <member name="M:System.Security.AccessControl.CommonSecurityDescriptor.AddSystemAcl(System.Byte,System.Int32)">
589       <summary>Sets the <see cref="P:System.Security.AccessControl.CommonSecurityDescriptor.SystemAcl" /> property for this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> instance and sets the <see cref="F:System.Security.AccessControl.ControlFlags.SystemAclPresent" /> flag.</summary>
590       <param name="revision">The revision level of the new <see cref="T:System.Security.AccessControl.SystemAcl" /> object.</param>
591       <param name="trusted">The number of Access Control Entries (ACEs) this <see cref="T:System.Security.AccessControl.SystemAcl" /> object can contain. This number should only be used as a hint.</param>
592     </member>
593     <member name="M:System.Security.AccessControl.CommonSecurityDescriptor.PurgeAccessControl(System.Security.Principal.SecurityIdentifier)">
594       <summary>Removes all access rules for the specified security identifier from the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</summary>
595       <param name="sid">The security identifier for which to remove access rules.</param>
596     </member>
597     <member name="M:System.Security.AccessControl.CommonSecurityDescriptor.PurgeAudit(System.Security.Principal.SecurityIdentifier)">
598       <summary>Removes all audit rules for the specified security identifier from the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</summary>
599       <param name="sid">The security identifier for which to remove audit rules.</param>
600     </member>
601     <member name="M:System.Security.AccessControl.CommonSecurityDescriptor.SetDiscretionaryAclProtection(System.Boolean,System.Boolean)">
602       <summary>Sets the inheritance protection for the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object. DACLs that are protected do not inherit access rules from parent containers.</summary>
603       <param name="isProtected">
604         <see langword="true" /> to protect the DACL from inheritance.</param>
605       <param name="preserveInheritance">
606         <see langword="true" /> to keep inherited access rules in the DACL; <see langword="false" /> to remove inherited access rules from the DACL.</param>
607     </member>
608     <member name="M:System.Security.AccessControl.CommonSecurityDescriptor.SetSystemAclProtection(System.Boolean,System.Boolean)">
609       <summary>Sets the inheritance protection for the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object. SACLs that are protected do not inherit audit rules from parent containers.</summary>
610       <param name="isProtected">
611         <see langword="true" /> to protect the SACL from inheritance.</param>
612       <param name="preserveInheritance">
613         <see langword="true" /> to keep inherited audit rules in the SACL; <see langword="false" /> to remove inherited audit rules from the SACL.</param>
614     </member>
615     <member name="P:System.Security.AccessControl.CommonSecurityDescriptor.ControlFlags">
616       <summary>Gets values that specify behavior of the <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</summary>
617       <returns>One or more values of the <see cref="T:System.Security.AccessControl.ControlFlags" /> enumeration combined with a logical OR operation.</returns>
618     </member>
619     <member name="P:System.Security.AccessControl.CommonSecurityDescriptor.DiscretionaryAcl">
620       <summary>Gets or sets the discretionary access control list (DACL) for this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object. The DACL contains access rules.</summary>
621       <returns>The DACL for this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</returns>
622     </member>
623     <member name="P:System.Security.AccessControl.CommonSecurityDescriptor.Group">
624       <summary>Gets or sets the primary group for this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</summary>
625       <returns>The primary group for this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</returns>
626     </member>
627     <member name="P:System.Security.AccessControl.CommonSecurityDescriptor.IsContainer">
628       <summary>Gets a Boolean value that specifies whether the object associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object is a container object.</summary>
629       <returns>
630         <see langword="true" /> if the object associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object is a container object; otherwise, <see langword="false" />.</returns>
631     </member>
632     <member name="P:System.Security.AccessControl.CommonSecurityDescriptor.IsDiscretionaryAclCanonical">
633       <summary>Gets a Boolean value that specifies whether the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object is in canonical order.</summary>
634       <returns>
635         <see langword="true" /> if the DACL associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object is in canonical order; otherwise, <see langword="false" />.</returns>
636     </member>
637     <member name="P:System.Security.AccessControl.CommonSecurityDescriptor.IsDS">
638       <summary>Gets a Boolean value that specifies whether the object associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object is a directory object.</summary>
639       <returns>
640         <see langword="true" /> if the object associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object is a directory object; otherwise, <see langword="false" />.</returns>
641     </member>
642     <member name="P:System.Security.AccessControl.CommonSecurityDescriptor.IsSystemAclCanonical">
643       <summary>Gets a Boolean value that specifies whether the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object is in canonical order.</summary>
644       <returns>
645         <see langword="true" /> if the SACL associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object is in canonical order; otherwise, <see langword="false" />.</returns>
646     </member>
647     <member name="P:System.Security.AccessControl.CommonSecurityDescriptor.Owner">
648       <summary>Gets or sets the owner of the object associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</summary>
649       <returns>The owner of the object associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</returns>
650     </member>
651     <member name="P:System.Security.AccessControl.CommonSecurityDescriptor.SystemAcl">
652       <summary>Gets or sets the System Access Control List (SACL) for this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object. The SACL contains audit rules.</summary>
653       <returns>The SACL for this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</returns>
654     </member>
655     <member name="T:System.Security.AccessControl.CompoundAce">
656       <summary>Represents a compound Access Control Entry (ACE).</summary>
657     </member>
658     <member name="M:System.Security.AccessControl.CompoundAce.#ctor(System.Security.AccessControl.AceFlags,System.Int32,System.Security.AccessControl.CompoundAceType,System.Security.Principal.SecurityIdentifier)">
659       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.CompoundAce" /> class.</summary>
660       <param name="flags">Contains flags that specify information about the inheritance, inheritance propagation, and auditing conditions for the new Access Control Entry (ACE).</param>
661       <param name="accessMask">The access mask for the ACE.</param>
662       <param name="compoundAceType">A value from the <see cref="T:System.Security.AccessControl.CompoundAceType" /> enumeration.</param>
663       <param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> associated with the new ACE.</param>
664     </member>
665     <member name="M:System.Security.AccessControl.CompoundAce.GetBinaryForm(System.Byte[],System.Int32)">
666       <summary>Marshals the contents of the <see cref="T:System.Security.AccessControl.CompoundAce" /> object into the specified byte array beginning at the specified offset.</summary>
667       <param name="binaryForm">The byte array into which the contents of the <see cref="T:System.Security.AccessControl.CompoundAce" /> is marshaled.</param>
668       <param name="offset">The offset at which to start marshaling.</param>
669       <exception cref="T:System.ArgumentOutOfRangeException">
670         <paramref name="offset" /> is negative or too high to allow the entire <see cref="T:System.Security.AccessControl.CompoundAce" /> to be copied into <paramref name="array" />.</exception>
671     </member>
672     <member name="P:System.Security.AccessControl.CompoundAce.BinaryLength">
673       <summary>Gets the length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.CompoundAce" /> object. This length should be used before marshaling the ACL into a binary array with the <see cref="M:System.Security.AccessControl.CompoundAce.GetBinaryForm(System.Byte[],System.Int32)" /> method.</summary>
674       <returns>The length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.CompoundAce" /> object.</returns>
675     </member>
676     <member name="P:System.Security.AccessControl.CompoundAce.CompoundAceType">
677       <summary>Gets or sets the type of this <see cref="T:System.Security.AccessControl.CompoundAce" /> object.</summary>
678       <returns>The type of this <see cref="T:System.Security.AccessControl.CompoundAce" /> object.</returns>
679     </member>
680     <member name="T:System.Security.AccessControl.CompoundAceType">
681       <summary>Specifies the type of a <see cref="T:System.Security.AccessControl.CompoundAce" /> object.</summary>
682     </member>
683     <member name="F:System.Security.AccessControl.CompoundAceType.Impersonation">
684       <summary>The <see cref="T:System.Security.AccessControl.CompoundAce" /> object is used for impersonation.</summary>
685     </member>
686     <member name="T:System.Security.AccessControl.ControlFlags">
687       <summary>These flags affect the security descriptor behavior.</summary>
688     </member>
689     <member name="F:System.Security.AccessControl.ControlFlags.DiscretionaryAclAutoInherited">
690       <summary>Specifies that the Discretionary Access Control List (DACL) has been automatically inherited from the parent. Set by resource managers only.</summary>
691     </member>
692     <member name="F:System.Security.AccessControl.ControlFlags.DiscretionaryAclAutoInheritRequired">
693       <summary>Ignored.</summary>
694     </member>
695     <member name="F:System.Security.AccessControl.ControlFlags.DiscretionaryAclDefaulted">
696       <summary>Specifies that the DACL was obtained by a defaulting mechanism. Set by resource managers only.</summary>
697     </member>
698     <member name="F:System.Security.AccessControl.ControlFlags.DiscretionaryAclPresent">
699       <summary>Specifies that the DACL is not <see langword="null" />. Set by resource managers or users.</summary>
700     </member>
701     <member name="F:System.Security.AccessControl.ControlFlags.DiscretionaryAclProtected">
702       <summary>Specifies that the resource manager prevents auto-inheritance. Set by resource managers or users.</summary>
703     </member>
704     <member name="F:System.Security.AccessControl.ControlFlags.DiscretionaryAclUntrusted">
705       <summary>Ignored.</summary>
706     </member>
707     <member name="F:System.Security.AccessControl.ControlFlags.GroupDefaulted">
708       <summary>Specifies that the group <see cref="T:System.Security.Principal.SecurityIdentifier" /> was obtained by a defaulting mechanism. Set by resource managers only; should not be set by callers.</summary>
709     </member>
710     <member name="F:System.Security.AccessControl.ControlFlags.None">
711       <summary>No control flags.</summary>
712     </member>
713     <member name="F:System.Security.AccessControl.ControlFlags.OwnerDefaulted">
714       <summary>Specifies that the owner <see cref="T:System.Security.Principal.SecurityIdentifier" /> was obtained by a defaulting mechanism. Set by resource managers only; should not be set by callers.</summary>
715     </member>
716     <member name="F:System.Security.AccessControl.ControlFlags.RMControlValid">
717       <summary>Specifies that the contents of the Reserved field are valid.</summary>
718     </member>
719     <member name="F:System.Security.AccessControl.ControlFlags.SelfRelative">
720       <summary>Specifies that the security descriptor binary representation is in the self-relative format.  This flag is always set.</summary>
721     </member>
722     <member name="F:System.Security.AccessControl.ControlFlags.ServerSecurity">
723       <summary>Ignored.</summary>
724     </member>
725     <member name="F:System.Security.AccessControl.ControlFlags.SystemAclAutoInherited">
726       <summary>Specifies that the System Access Control List (SACL) has been automatically inherited from the parent. Set by resource managers only.</summary>
727     </member>
728     <member name="F:System.Security.AccessControl.ControlFlags.SystemAclAutoInheritRequired">
729       <summary>Ignored.</summary>
730     </member>
731     <member name="F:System.Security.AccessControl.ControlFlags.SystemAclDefaulted">
732       <summary>Specifies that the SACL was obtained by a defaulting mechanism. Set by resource managers only.</summary>
733     </member>
734     <member name="F:System.Security.AccessControl.ControlFlags.SystemAclPresent">
735       <summary>Specifies that the SACL is not <see langword="null" />. Set by resource managers or users.</summary>
736     </member>
737     <member name="F:System.Security.AccessControl.ControlFlags.SystemAclProtected">
738       <summary>Specifies that the resource manager prevents auto-inheritance. Set by resource managers or users.</summary>
739     </member>
740     <member name="T:System.Security.AccessControl.CustomAce">
741       <summary>Represents an Access Control Entry (ACE) that is not defined by one of the members of the <see cref="T:System.Security.AccessControl.AceType" /> enumeration.</summary>
742     </member>
743     <member name="F:System.Security.AccessControl.CustomAce.MaxOpaqueLength">
744       <summary>Returns the maximum allowed length of an opaque data blob for this <see cref="T:System.Security.AccessControl.CustomAce" /> object.</summary>
745     </member>
746     <member name="M:System.Security.AccessControl.CustomAce.#ctor(System.Security.AccessControl.AceType,System.Security.AccessControl.AceFlags,System.Byte[])">
747       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.CustomAce" /> class.</summary>
748       <param name="type">Type of the new Access Control Entry (ACE). This value must be greater than <see cref="F:System.Security.AccessControl.AceType.MaxDefinedAceType" />.</param>
749       <param name="flags">Flags that specify information about the inheritance, inheritance propagation, and auditing conditions for the new ACE.</param>
750       <param name="opaque">An array of byte values that contains the data for the new ACE. This value can be <see langword="null" />. The length of this array must not be greater than the value of the <see cref="F:System.Security.AccessControl.CustomAce.MaxOpaqueLength" /> field, and must be a multiple of four.</param>
751       <exception cref="T:System.ArgumentOutOfRangeException">The value of the <paramref name="type" /> parameter is not greater than <see cref="F:System.Security.AccessControl.AceType.MaxDefinedAceType" /> or the length of the <paramref name="opaque" /> array is either greater than the value of the <see cref="F:System.Security.AccessControl.CustomAce.MaxOpaqueLength" /> field or not a multiple of four.</exception>
752     </member>
753     <member name="M:System.Security.AccessControl.CustomAce.GetBinaryForm(System.Byte[],System.Int32)">
754       <summary>Marshals the contents of the <see cref="T:System.Security.AccessControl.CustomAce" /> object into the specified byte array beginning at the specified offset.</summary>
755       <param name="binaryForm">The byte array into which the contents of the <see cref="T:System.Security.AccessControl.CustomAce" /> is marshaled.</param>
756       <param name="offset">The offset at which to start marshaling.</param>
757       <exception cref="T:System.ArgumentOutOfRangeException">
758         <paramref name="offset" /> is negative or too high to allow the entire <see cref="T:System.Security.AccessControl.CustomAce" /> to be copied into <paramref name="array" />.</exception>
759     </member>
760     <member name="M:System.Security.AccessControl.CustomAce.GetOpaque">
761       <summary>Returns the opaque data associated with this <see cref="T:System.Security.AccessControl.CustomAce" /> object.</summary>
762       <returns>An array of byte values that represents the opaque data associated with this <see cref="T:System.Security.AccessControl.CustomAce" /> object.</returns>
763     </member>
764     <member name="M:System.Security.AccessControl.CustomAce.SetOpaque(System.Byte[])">
765       <summary>Sets the opaque callback data associated with this <see cref="T:System.Security.AccessControl.CustomAce" /> object.</summary>
766       <param name="opaque">An array of byte values that represents the opaque callback data for this <see cref="T:System.Security.AccessControl.CustomAce" /> object.</param>
767     </member>
768     <member name="P:System.Security.AccessControl.CustomAce.BinaryLength">
769       <summary>Gets the length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.CustomAce" /> object. This length should be used before marshaling the ACL into a binary array with the <see cref="M:System.Security.AccessControl.CustomAce.GetBinaryForm(System.Byte[],System.Int32)" /> method.</summary>
770       <returns>The length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.CustomAce" /> object.</returns>
771     </member>
772     <member name="P:System.Security.AccessControl.CustomAce.OpaqueLength">
773       <summary>Gets the length of the opaque data associated with this <see cref="T:System.Security.AccessControl.CustomAce" /> object.</summary>
774       <returns>The length of the opaque callback data.</returns>
775     </member>
776     <member name="T:System.Security.AccessControl.DiscretionaryAcl">
777       <summary>Represents a Discretionary Access Control List (DACL).</summary>
778     </member>
779     <member name="M:System.Security.AccessControl.DiscretionaryAcl.#ctor(System.Boolean,System.Boolean,System.Byte,System.Int32)">
780       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> class with the specified values.</summary>
781       <param name="isContainer">
782         <see langword="true" /> if the new <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object is a container.</param>
783       <param name="isDS">
784         <see langword="true" /> if the new <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object is a directory object Access Control List (ACL).</param>
785       <param name="revision">The revision level of the new <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object.</param>
786       <param name="capacity">The number of Access Control Entries (ACEs) this <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object can contain. This number is to be used only as a hint.</param>
787     </member>
788     <member name="M:System.Security.AccessControl.DiscretionaryAcl.#ctor(System.Boolean,System.Boolean,System.Int32)">
789       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> class with the specified values.</summary>
790       <param name="isContainer">
791         <see langword="true" /> if the new <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object is a container.</param>
792       <param name="isDS">
793         <see langword="true" /> if the new <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object is a directory object Access Control List (ACL).</param>
794       <param name="capacity">The number of Access Control Entries (ACEs) this <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object can contain. This number is to be used only as a hint.</param>
795     </member>
796     <member name="M:System.Security.AccessControl.DiscretionaryAcl.#ctor(System.Boolean,System.Boolean,System.Security.AccessControl.RawAcl)">
797       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> class with the specified values from the specified <see cref="T:System.Security.AccessControl.RawAcl" /> object.</summary>
798       <param name="isContainer">
799         <see langword="true" /> if the new <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object is a container.</param>
800       <param name="isDS">
801         <see langword="true" /> if the new <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object is a directory object Access Control List (ACL).</param>
802       <param name="rawAcl">The underlying <see cref="T:System.Security.AccessControl.RawAcl" /> object for the new <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object. Specify <see langword="null" /> to create an empty ACL.</param>
803     </member>
804     <member name="M:System.Security.AccessControl.DiscretionaryAcl.AddAccess(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags)">
805       <summary>Adds an Access Control Entry (ACE) with the specified settings to the current <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object.</summary>
806       <param name="accessType">The type of access control (allow or deny) to add.</param>
807       <param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to add an ACE.</param>
808       <param name="accessMask">The access rule for the new ACE.</param>
809       <param name="inheritanceFlags">Flags that specify the inheritance properties of the new ACE.</param>
810       <param name="propagationFlags">Flags that specify the inheritance propagation properties for the new ACE.</param>
811     </member>
812     <member name="M:System.Security.AccessControl.DiscretionaryAcl.AddAccess(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.ObjectAceFlags,System.Guid,System.Guid)">
813       <summary>Adds an Access Control Entry (ACE) with the specified settings to the current <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object. Use this method for directory object Access Control Lists (ACLs) when specifying the object type or the inherited object type for the new ACE.</summary>
814       <param name="accessType">The type of access control (allow or deny) to add.</param>
815       <param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to add an ACE.</param>
816       <param name="accessMask">The access rule for the new ACE.</param>
817       <param name="inheritanceFlags">Flags that specify the inheritance properties of the new ACE.</param>
818       <param name="propagationFlags">Flags that specify the inheritance propagation properties for the new ACE.</param>
819       <param name="objectFlags">Flags that specify if the <paramref name="objectType" /> and <paramref name="inheritedObjectType" /> parameters contain non-<see langword="null" /> values.</param>
820       <param name="objectType">The identity of the class of objects to which the new ACE applies.</param>
821       <param name="inheritedObjectType">The identity of the class of child objects which can inherit the new ACE.</param>
822     </member>
823     <member name="M:System.Security.AccessControl.DiscretionaryAcl.AddAccess(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Security.AccessControl.ObjectAccessRule)">
824       <summary>Adds an Access Control Entry (ACE) with the specified settings to the current <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object.</summary>
825       <param name="accessType">The type of access control (allow or deny) to add.</param>
826       <param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to add an ACE.</param>
827       <param name="rule">The <see cref="T:System.Security.AccessControl.ObjectAccessRule" /> for the new access.</param>
828     </member>
829     <member name="M:System.Security.AccessControl.DiscretionaryAcl.RemoveAccess(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags)">
830       <summary>Removes the specified access control rule from the current <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object.</summary>
831       <param name="accessType">The type of access control (allow or deny) to remove.</param>
832       <param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to remove an access control rule.</param>
833       <param name="accessMask">The access mask for the rule to be removed.</param>
834       <param name="inheritanceFlags">Flags that specify the inheritance properties of the rule to be removed.</param>
835       <param name="propagationFlags">Flags that specify the inheritance propagation properties for the rule to be removed.</param>
836       <returns>
837         <see langword="true" /> if this method successfully removes the specified access; otherwise, <see langword="false" />.</returns>
838     </member>
839     <member name="M:System.Security.AccessControl.DiscretionaryAcl.RemoveAccess(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.ObjectAceFlags,System.Guid,System.Guid)">
840       <summary>Removes the specified access control rule from the current <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object. Use this method for directory object Access Control Lists (ACLs) when specifying the object type or the inherited object type.</summary>
841       <param name="accessType">The type of access control (allow or deny) to remove.</param>
842       <param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to remove an access control rule.</param>
843       <param name="accessMask">The access mask for the access control rule to be removed.</param>
844       <param name="inheritanceFlags">Flags that specify the inheritance properties of the access control rule to be removed.</param>
845       <param name="propagationFlags">Flags that specify the inheritance propagation properties for the access control rule to be removed.</param>
846       <param name="objectFlags">Flags that specify if the <paramref name="objectType" /> and <paramref name="inheritedObjectType" /> parameters contain non-<see langword="null" /> values.</param>
847       <param name="objectType">The identity of the class of objects to which the removed access control rule applies.</param>
848       <param name="inheritedObjectType">The identity of the class of child objects which can inherit the removed access control rule.</param>
849       <returns>
850         <see langword="true" /> if this method successfully removes the specified access; otherwise, <see langword="false" />.</returns>
851     </member>
852     <member name="M:System.Security.AccessControl.DiscretionaryAcl.RemoveAccess(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Security.AccessControl.ObjectAccessRule)">
853       <summary>Removes the specified access control rule from the current <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object.</summary>
854       <param name="accessType">The type of access control (allow or deny) to remove.</param>
855       <param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to remove an access control rule.</param>
856       <param name="rule">The <see cref="T:System.Security.AccessControl.ObjectAccessRule" /> for which to remove access.</param>
857       <returns>Returns <see cref="T:System.Boolean" />.</returns>
858     </member>
859     <member name="M:System.Security.AccessControl.DiscretionaryAcl.RemoveAccessSpecific(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags)">
860       <summary>Removes the specified Access Control Entry (ACE) from the current <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object.</summary>
861       <param name="accessType">The type of access control (allow or deny) to remove.</param>
862       <param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to remove an ACE.</param>
863       <param name="accessMask">The access mask for the ACE to be removed.</param>
864       <param name="inheritanceFlags">Flags that specify the inheritance properties of the ACE to be removed.</param>
865       <param name="propagationFlags">Flags that specify the inheritance propagation properties for the ACE to be removed.</param>
866     </member>
867     <member name="M:System.Security.AccessControl.DiscretionaryAcl.RemoveAccessSpecific(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.ObjectAceFlags,System.Guid,System.Guid)">
868       <summary>Removes the specified Access Control Entry (ACE) from the current <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object. Use this method for directory object Access Control Lists (ACLs) when specifying the object type or the inherited object type for the ACE to be removed.</summary>
869       <param name="accessType">The type of access control (allow or deny) to remove.</param>
870       <param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to remove an ACE.</param>
871       <param name="accessMask">The access mask for the ACE to be removed.</param>
872       <param name="inheritanceFlags">Flags that specify the inheritance properties of the ACE to be removed.</param>
873       <param name="propagationFlags">Flags that specify the inheritance propagation properties for the ACE to be removed.</param>
874       <param name="objectFlags">Flags that specify if the <paramref name="objectType" /> and <paramref name="inheritedObjectType" /> parameters contain non-<see langword="null" /> values.</param>
875       <param name="objectType">The identity of the class of objects to which the removed ACE applies.</param>
876       <param name="inheritedObjectType">The identity of the class of child objects which can inherit the removed ACE.</param>
877     </member>
878     <member name="M:System.Security.AccessControl.DiscretionaryAcl.RemoveAccessSpecific(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Security.AccessControl.ObjectAccessRule)">
879       <summary>Removes the specified Access Control Entry (ACE) from the current <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object.</summary>
880       <param name="accessType">The type of access control (allow or deny) to remove.</param>
881       <param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to remove an ACE.</param>
882       <param name="rule">The <see cref="T:System.Security.AccessControl.ObjectAccessRule" /> for which to remove access.</param>
883     </member>
884     <member name="M:System.Security.AccessControl.DiscretionaryAcl.SetAccess(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags)">
885       <summary>Sets the specified access control for the specified <see cref="T:System.Security.Principal.SecurityIdentifier" /> object.</summary>
886       <param name="accessType">The type of access control (allow or deny) to set.</param>
887       <param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to set an ACE.</param>
888       <param name="accessMask">The access rule for the new ACE.</param>
889       <param name="inheritanceFlags">Flags that specify the inheritance properties of the new ACE.</param>
890       <param name="propagationFlags">Flags that specify the inheritance propagation properties for the new ACE.</param>
891     </member>
892     <member name="M:System.Security.AccessControl.DiscretionaryAcl.SetAccess(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.ObjectAceFlags,System.Guid,System.Guid)">
893       <summary>Sets the specified access control for the specified <see cref="T:System.Security.Principal.SecurityIdentifier" /> object.</summary>
894       <param name="accessType">The type of access control (allow or deny) to set.</param>
895       <param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to set an ACE.</param>
896       <param name="accessMask">The access rule for the new ACE.</param>
897       <param name="inheritanceFlags">Flags that specify the inheritance properties of the new ACE.</param>
898       <param name="propagationFlags">Flags that specify the inheritance propagation properties for the new ACE.</param>
899       <param name="objectFlags">Flags that specify if the <paramref name="objectType" /> and <paramref name="inheritedObjectType" /> parameters contain non-<see langword="null" /> values.</param>
900       <param name="objectType">The identity of the class of objects to which the new ACE applies.</param>
901       <param name="inheritedObjectType">The identity of the class of child objects which can inherit the new ACE.</param>
902     </member>
903     <member name="M:System.Security.AccessControl.DiscretionaryAcl.SetAccess(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Security.AccessControl.ObjectAccessRule)">
904       <summary>Sets the specified access control for the specified <see cref="T:System.Security.Principal.SecurityIdentifier" /> object.</summary>
905       <param name="accessType">The type of access control (allow or deny) to set.</param>
906       <param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to set an ACE.</param>
907       <param name="rule">The <see cref="T:System.Security.AccessControl.ObjectAccessRule" /> for which to set access.</param>
908     </member>
909     <member name="T:System.Security.AccessControl.GenericAce">
910       <summary>Represents an Access Control Entry (ACE), and is the base class for all other ACE classes.</summary>
911     </member>
912     <member name="M:System.Security.AccessControl.GenericAce.Copy">
913       <summary>Creates a deep copy of this Access Control Entry (ACE).</summary>
914       <returns>The <see cref="T:System.Security.AccessControl.GenericAce" /> object that this method creates.</returns>
915     </member>
916     <member name="M:System.Security.AccessControl.GenericAce.CreateFromBinaryForm(System.Byte[],System.Int32)">
917       <summary>Creates a <see cref="T:System.Security.AccessControl.GenericAce" /> object from the specified binary data.</summary>
918       <param name="binaryForm">The binary data from which to create the new <see cref="T:System.Security.AccessControl.GenericAce" /> object.</param>
919       <param name="offset">The offset at which to begin unmarshaling.</param>
920       <returns>The <see cref="T:System.Security.AccessControl.GenericAce" /> object this method creates.</returns>
921     </member>
922     <member name="M:System.Security.AccessControl.GenericAce.Equals(System.Object)">
923       <summary>Determines whether the specified <see cref="T:System.Security.AccessControl.GenericAce" /> object is equal to the current <see cref="T:System.Security.AccessControl.GenericAce" /> object.</summary>
924       <param name="o">The <see cref="T:System.Security.AccessControl.GenericAce" /> object to compare to the current <see cref="T:System.Security.AccessControl.GenericAce" /> object.</param>
925       <returns>
926         <see langword="true" /> if the specified <see cref="T:System.Security.AccessControl.GenericAce" /> object is equal to the current <see cref="T:System.Security.AccessControl.GenericAce" /> object; otherwise, <see langword="false" />.</returns>
927     </member>
928     <member name="M:System.Security.AccessControl.GenericAce.GetBinaryForm(System.Byte[],System.Int32)">
929       <summary>Marshals the contents of the <see cref="T:System.Security.AccessControl.GenericAce" /> object into the specified byte array beginning at the specified offset.</summary>
930       <param name="binaryForm">The byte array into which the contents of the <see cref="T:System.Security.AccessControl.GenericAce" /> is marshaled.</param>
931       <param name="offset">The offset at which to start marshaling.</param>
932       <exception cref="T:System.ArgumentOutOfRangeException">
933         <paramref name="offset" /> is negative or too high to allow the entire <see cref="T:System.Security.AccessControl.GenericAcl" /> to be copied into <paramref name="array" />.</exception>
934     </member>
935     <member name="M:System.Security.AccessControl.GenericAce.GetHashCode">
936       <summary>Serves as a hash function for the <see cref="T:System.Security.AccessControl.GenericAce" /> class. The  <see cref="M:System.Security.AccessControl.GenericAce.GetHashCode" /> method is suitable for use in hashing algorithms and data structures like a hash table.</summary>
937       <returns>A hash code for the current <see cref="T:System.Security.AccessControl.GenericAce" /> object.</returns>
938     </member>
939     <member name="M:System.Security.AccessControl.GenericAce.op_Equality(System.Security.AccessControl.GenericAce,System.Security.AccessControl.GenericAce)">
940       <summary>Determines whether the specified <see cref="T:System.Security.AccessControl.GenericAce" /> objects are considered equal.</summary>
941       <param name="left">The first <see cref="T:System.Security.AccessControl.GenericAce" /> object to compare.</param>
942       <param name="right">The second <see cref="T:System.Security.AccessControl.GenericAce" /> to compare.</param>
943       <returns>
944         <see langword="true" /> if the two <see cref="T:System.Security.AccessControl.GenericAce" /> objects are equal; otherwise, <see langword="false" />.</returns>
945     </member>
946     <member name="M:System.Security.AccessControl.GenericAce.op_Inequality(System.Security.AccessControl.GenericAce,System.Security.AccessControl.GenericAce)">
947       <summary>Determines whether the specified <see cref="T:System.Security.AccessControl.GenericAce" /> objects are considered unequal.</summary>
948       <param name="left">The first <see cref="T:System.Security.AccessControl.GenericAce" /> object to compare.</param>
949       <param name="right">The second <see cref="T:System.Security.AccessControl.GenericAce" /> to compare.</param>
950       <returns>
951         <see langword="true" /> if the two <see cref="T:System.Security.AccessControl.GenericAce" /> objects are unequal; otherwise, <see langword="false" />.</returns>
952     </member>
953     <member name="P:System.Security.AccessControl.GenericAce.AceFlags">
954       <summary>Gets or sets the <see cref="T:System.Security.AccessControl.AceFlags" /> associated with this <see cref="T:System.Security.AccessControl.GenericAce" /> object.</summary>
955       <returns>The <see cref="T:System.Security.AccessControl.AceFlags" /> associated with this <see cref="T:System.Security.AccessControl.GenericAce" /> object.</returns>
956     </member>
957     <member name="P:System.Security.AccessControl.GenericAce.AceType">
958       <summary>Gets the type of this Access Control Entry (ACE).</summary>
959       <returns>The type of this ACE.</returns>
960     </member>
961     <member name="P:System.Security.AccessControl.GenericAce.AuditFlags">
962       <summary>Gets the audit information associated with this Access Control Entry (ACE).</summary>
963       <returns>The audit information associated with this Access Control Entry (ACE).</returns>
964     </member>
965     <member name="P:System.Security.AccessControl.GenericAce.BinaryLength">
966       <summary>Gets the length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.GenericAce" /> object. This length should be used before marshaling the ACL into a binary array with the <see cref="M:System.Security.AccessControl.GenericAce.GetBinaryForm(System.Byte[],System.Int32)" /> method.</summary>
967       <returns>The length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.GenericAce" /> object.</returns>
968     </member>
969     <member name="P:System.Security.AccessControl.GenericAce.InheritanceFlags">
970       <summary>Gets flags that specify the inheritance properties of this Access Control Entry (ACE).</summary>
971       <returns>Flags that specify the inheritance properties of this ACE.</returns>
972     </member>
973     <member name="P:System.Security.AccessControl.GenericAce.IsInherited">
974       <summary>Gets a Boolean value that specifies whether this Access Control Entry (ACE) is inherited or is set explicitly.</summary>
975       <returns>
976         <see langword="true" /> if this ACE is inherited; otherwise, <see langword="false" />.</returns>
977     </member>
978     <member name="P:System.Security.AccessControl.GenericAce.PropagationFlags">
979       <summary>Gets flags that specify the inheritance propagation properties of this Access Control Entry (ACE).</summary>
980       <returns>Flags that specify the inheritance propagation properties of this ACE.</returns>
981     </member>
982     <member name="T:System.Security.AccessControl.GenericAcl">
983       <summary>Represents an access control list (ACL) and is the base class for the <see cref="T:System.Security.AccessControl.CommonAcl" />, <see cref="T:System.Security.AccessControl.DiscretionaryAcl" />, <see cref="T:System.Security.AccessControl.RawAcl" />, and <see cref="T:System.Security.AccessControl.SystemAcl" /> classes.</summary>
984     </member>
985     <member name="F:System.Security.AccessControl.GenericAcl.AclRevision">
986       <summary>The revision level of the current <see cref="T:System.Security.AccessControl.GenericAcl" />. This value is returned by the <see cref="P:System.Security.AccessControl.GenericAcl.Revision" /> property for Access Control Lists (ACLs) that are not associated with Directory Services objects.</summary>
987     </member>
988     <member name="F:System.Security.AccessControl.GenericAcl.AclRevisionDS">
989       <summary>The revision level of the current <see cref="T:System.Security.AccessControl.GenericAcl" />. This value is returned by the <see cref="P:System.Security.AccessControl.GenericAcl.Revision" /> property for Access Control Lists (ACLs) that are associated with Directory Services objects.</summary>
990     </member>
991     <member name="F:System.Security.AccessControl.GenericAcl.MaxBinaryLength">
992       <summary>The maximum allowed binary length of a <see cref="T:System.Security.AccessControl.GenericAcl" /> object.</summary>
993     </member>
994     <member name="M:System.Security.AccessControl.GenericAcl.#ctor">
995       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.GenericAcl" /> class.</summary>
996     </member>
997     <member name="M:System.Security.AccessControl.GenericAcl.CopyTo(System.Security.AccessControl.GenericAce[],System.Int32)">
998       <summary>Copies each <see cref="T:System.Security.AccessControl.GenericAce" /> of the current <see cref="T:System.Security.AccessControl.GenericAcl" /> into the specified array.</summary>
999       <param name="array">The array into which copies of the <see cref="T:System.Security.AccessControl.GenericAce" /> objects contained by the current <see cref="T:System.Security.AccessControl.GenericAcl" /> are placed.</param>
1000       <param name="index">The zero-based index of <paramref name="array" /> where the copying begins.</param>
1001     </member>
1002     <member name="M:System.Security.AccessControl.GenericAcl.GetBinaryForm(System.Byte[],System.Int32)">
1003       <summary>Marshals the contents of the <see cref="T:System.Security.AccessControl.GenericAcl" /> object into the specified byte array beginning at the specified offset.</summary>
1004       <param name="binaryForm">The byte array into which the contents of the <see cref="T:System.Security.AccessControl.GenericAcl" /> is marshaled.</param>
1005       <param name="offset">The offset at which to start marshaling.</param>
1006       <exception cref="T:System.ArgumentOutOfRangeException">
1007         <paramref name="offset" /> is negative or too high to allow the entire <see cref="T:System.Security.AccessControl.GenericAcl" /> to be copied into <paramref name="array" />.</exception>
1008     </member>
1009     <member name="M:System.Security.AccessControl.GenericAcl.GetEnumerator">
1010       <summary>Retrieves an object that you can use to iterate through the access control entries (ACEs) in an access control list (ACL).</summary>
1011       <returns>An enumerator object.</returns>
1012     </member>
1013     <member name="M:System.Security.AccessControl.GenericAcl.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
1014       <summary>Copies each <see cref="T:System.Security.AccessControl.GenericAce" /> of the current <see cref="T:System.Security.AccessControl.GenericAcl" /> into the specified array.</summary>
1015       <param name="array">The array into which copies of the <see cref="T:System.Security.AccessControl.GenericAce" /> objects contained by the current <see cref="T:System.Security.AccessControl.GenericAcl" /> are placed.</param>
1016       <param name="index">The zero-based index of <paramref name="array" /> where the copying begins.</param>
1017     </member>
1018     <member name="M:System.Security.AccessControl.GenericAcl.System#Collections#IEnumerable#GetEnumerator">
1019       <summary>Returns a new instance of the <see cref="T:System.Security.AccessControl.AceEnumerator" /> class cast as an instance of the <see cref="T:System.Collections.IEnumerator" /> interface.</summary>
1020       <returns>A new <see cref="T:System.Security.AccessControl.AceEnumerator" /> object, cast as an instance of the <see cref="T:System.Collections.IEnumerator" /> interface.</returns>
1021     </member>
1022     <member name="P:System.Security.AccessControl.GenericAcl.BinaryLength">
1023       <summary>Gets the length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.GenericAcl" /> object. This length should be used before marshaling the ACL into a binary array with the <see cref="M:System.Security.AccessControl.GenericAcl.GetBinaryForm(System.Byte[],System.Int32)" /> method.</summary>
1024       <returns>The length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.GenericAcl" /> object.</returns>
1025     </member>
1026     <member name="P:System.Security.AccessControl.GenericAcl.Count">
1027       <summary>Gets the number of access control entries (ACEs) in the current <see cref="T:System.Security.AccessControl.GenericAcl" /> object.</summary>
1028       <returns>The number of ACEs in the current <see cref="T:System.Security.AccessControl.GenericAcl" /> object.</returns>
1029     </member>
1030     <member name="P:System.Security.AccessControl.GenericAcl.IsSynchronized">
1031       <summary>This property is always set to <see langword="false" />. It is implemented only because it is required for the implementation of the <see cref="T:System.Collections.ICollection" /> interface.</summary>
1032       <returns>Always <see langword="false" />.</returns>
1033     </member>
1034     <member name="P:System.Security.AccessControl.GenericAcl.Item(System.Int32)">
1035       <summary>Gets or sets the <see cref="T:System.Security.AccessControl.GenericAce" /> at the specified index.</summary>
1036       <param name="index">The zero-based index of the <see cref="T:System.Security.AccessControl.GenericAce" /> to get or set.</param>
1037       <returns>The <see cref="T:System.Security.AccessControl.GenericAce" /> at the specified index.</returns>
1038     </member>
1039     <member name="P:System.Security.AccessControl.GenericAcl.Revision">
1040       <summary>Gets the revision level of the <see cref="T:System.Security.AccessControl.GenericAcl" />.</summary>
1041       <returns>A byte value that specifies the revision level of the <see cref="T:System.Security.AccessControl.GenericAcl" />.</returns>
1042     </member>
1043     <member name="P:System.Security.AccessControl.GenericAcl.SyncRoot">
1044       <summary>This property always returns <see langword="null" />. It is implemented only because it is required for the implementation of the <see cref="T:System.Collections.ICollection" /> interface.</summary>
1045       <returns>Always returns <see langword="null" />.</returns>
1046     </member>
1047     <member name="T:System.Security.AccessControl.GenericSecurityDescriptor">
1048       <summary>Represents a security descriptor. A security descriptor includes an owner, a primary group, a Discretionary Access Control List (DACL), and a System Access Control List (SACL).</summary>
1049     </member>
1050     <member name="M:System.Security.AccessControl.GenericSecurityDescriptor.GetBinaryForm(System.Byte[],System.Int32)">
1051       <summary>Returns an array of byte values that represents the information contained in this <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> object.</summary>
1052       <param name="binaryForm">The byte array into which the contents of the <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> is marshaled.</param>
1053       <param name="offset">The offset at which to start marshaling.</param>
1054       <exception cref="T:System.ArgumentOutOfRangeException">
1055         <paramref name="offset" /> is negative or too high to allow the entire <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> to be copied into <paramref name="array" />.</exception>
1056     </member>
1057     <member name="M:System.Security.AccessControl.GenericSecurityDescriptor.GetSddlForm(System.Security.AccessControl.AccessControlSections)">
1058       <summary>Returns the Security Descriptor Definition Language (SDDL) representation of the specified sections of the security descriptor that this <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> object represents.</summary>
1059       <param name="includeSections">Specifies which sections (access rules, audit rules, primary group, owner) of the security descriptor to get.</param>
1060       <returns>The SDDL representation of the specified sections of the security descriptor associated with this <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> object.</returns>
1061     </member>
1062     <member name="M:System.Security.AccessControl.GenericSecurityDescriptor.IsSddlConversionSupported">
1063       <summary>Returns a boolean value that specifies whether the security descriptor associated with this  <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> object can be converted to the Security Descriptor Definition Language (SDDL) format.</summary>
1064       <returns>
1065         <see langword="true" /> if the security descriptor associated with this  <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> object can be converted to the Security Descriptor Definition Language (SDDL) format; otherwise, <see langword="false" />.</returns>
1066     </member>
1067     <member name="P:System.Security.AccessControl.GenericSecurityDescriptor.BinaryLength">
1068       <summary>Gets the length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> object. This length should be used before marshaling the ACL into a binary array with the <see cref="M:System.Security.AccessControl.GenericSecurityDescriptor.GetBinaryForm(System.Byte[],System.Int32)" /> method.</summary>
1069       <returns>The length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> object.</returns>
1070     </member>
1071     <member name="P:System.Security.AccessControl.GenericSecurityDescriptor.ControlFlags">
1072       <summary>Gets values that specify behavior of the <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> object.</summary>
1073       <returns>One or more values of the <see cref="T:System.Security.AccessControl.ControlFlags" /> enumeration combined with a logical OR operation.</returns>
1074     </member>
1075     <member name="P:System.Security.AccessControl.GenericSecurityDescriptor.Group">
1076       <summary>Gets or sets the primary group for this <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> object.</summary>
1077       <returns>The primary group for this <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> object.</returns>
1078     </member>
1079     <member name="P:System.Security.AccessControl.GenericSecurityDescriptor.Owner">
1080       <summary>Gets or sets the owner of the object associated with this <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> object.</summary>
1081       <returns>The owner of the object associated with this <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> object.</returns>
1082     </member>
1083     <member name="P:System.Security.AccessControl.GenericSecurityDescriptor.Revision">
1084       <summary>Gets the revision level of the <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" /> object.</summary>
1085       <returns>A byte value that specifies the revision level of the <see cref="T:System.Security.AccessControl.GenericSecurityDescriptor" />.</returns>
1086     </member>
1087     <member name="T:System.Security.AccessControl.InheritanceFlags">
1088       <summary>Inheritance flags specify the semantics of inheritance for access control entries (ACEs).</summary>
1089     </member>
1090     <member name="F:System.Security.AccessControl.InheritanceFlags.ContainerInherit">
1091       <summary>The ACE is inherited by child container objects.</summary>
1092     </member>
1093     <member name="F:System.Security.AccessControl.InheritanceFlags.None">
1094       <summary>The ACE is not inherited by child objects.</summary>
1095     </member>
1096     <member name="F:System.Security.AccessControl.InheritanceFlags.ObjectInherit">
1097       <summary>The ACE is inherited by child leaf objects.</summary>
1098     </member>
1099     <member name="T:System.Security.AccessControl.KnownAce">
1100       <summary>Encapsulates all Access Control Entry (ACE) types currently defined by Microsoft Corporation. All <see cref="T:System.Security.AccessControl.KnownAce" /> objects contain a 32-bit access mask and a <see cref="T:System.Security.Principal.SecurityIdentifier" /> object.</summary>
1101     </member>
1102     <member name="P:System.Security.AccessControl.KnownAce.AccessMask">
1103       <summary>Gets or sets the access mask for this <see cref="T:System.Security.AccessControl.KnownAce" /> object.</summary>
1104       <returns>The access mask for this <see cref="T:System.Security.AccessControl.KnownAce" /> object.</returns>
1105     </member>
1106     <member name="P:System.Security.AccessControl.KnownAce.SecurityIdentifier">
1107       <summary>Gets or sets the <see cref="T:System.Security.Principal.SecurityIdentifier" /> object associated with this <see cref="T:System.Security.AccessControl.KnownAce" /> object.</summary>
1108       <returns>The <see cref="T:System.Security.Principal.SecurityIdentifier" /> object associated with this <see cref="T:System.Security.AccessControl.KnownAce" /> object.</returns>
1109     </member>
1110     <member name="T:System.Security.AccessControl.NativeObjectSecurity">
1111       <summary>Provides the ability to control access to native objects without direct manipulation of Access Control Lists (ACLs). Native object types are defined by the <see cref="T:System.Security.AccessControl.ResourceType" /> enumeration.</summary>
1112     </member>
1113     <member name="M:System.Security.AccessControl.NativeObjectSecurity.#ctor(System.Boolean,System.Security.AccessControl.ResourceType)">
1114       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> class with the specified values.</summary>
1115       <param name="isContainer">
1116         <see langword="true" /> if the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is a container object.</param>
1117       <param name="resourceType">The type of securable object with which the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated.</param>
1118     </member>
1119     <member name="M:System.Security.AccessControl.NativeObjectSecurity.#ctor(System.Boolean,System.Security.AccessControl.ResourceType,System.Runtime.InteropServices.SafeHandle,System.Security.AccessControl.AccessControlSections)">
1120       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> class with the specified values. We recommend that the values of the <paramref name="includeSections" /> parameters passed to the constructor and persist methods be identical.</summary>
1121       <param name="isContainer">
1122         <see langword="true" /> if the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is a container object.</param>
1123       <param name="resourceType">The type of securable object with which the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated.</param>
1124       <param name="handle">The handle of the securable object with which the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated.</param>
1125       <param name="includeSections">One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> enumeration values that specifies the sections of the security descriptor (access rules, audit rules, owner, primary group) of the securable object to include in this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object.</param>
1126     </member>
1127     <member name="M:System.Security.AccessControl.NativeObjectSecurity.#ctor(System.Boolean,System.Security.AccessControl.ResourceType,System.Runtime.InteropServices.SafeHandle,System.Security.AccessControl.AccessControlSections,System.Security.AccessControl.NativeObjectSecurity.ExceptionFromErrorCode,System.Object)">
1128       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> class with the specified values. We recommend that the values of the <paramref name="includeSections" /> parameters passed to the constructor and persist methods be identical.</summary>
1129       <param name="isContainer">
1130         <see langword="true" /> if the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is a container object.</param>
1131       <param name="resourceType">The type of securable object with which the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated.</param>
1132       <param name="handle">The handle of the securable object with which the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated.</param>
1133       <param name="includeSections">One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> enumeration values that specifies the sections of the security descriptor (access rules, audit rules, owner, primary group) of the securable object to include in this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object.</param>
1134       <param name="exceptionFromErrorCode">A delegate implemented by integrators that provides custom exceptions.</param>
1135       <param name="exceptionContext">An object that contains contextual information about the source or destination of the exception.</param>
1136     </member>
1137     <member name="M:System.Security.AccessControl.NativeObjectSecurity.#ctor(System.Boolean,System.Security.AccessControl.ResourceType,System.Security.AccessControl.NativeObjectSecurity.ExceptionFromErrorCode,System.Object)">
1138       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> class by using the specified values.</summary>
1139       <param name="isContainer">
1140         <see langword="true" /> if the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is a container object.</param>
1141       <param name="resourceType">The type of securable object with which the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated.</param>
1142       <param name="exceptionFromErrorCode">A delegate implemented by integrators that provides custom exceptions.</param>
1143       <param name="exceptionContext">An object that contains contextual information about the source or destination of the exception.</param>
1144     </member>
1145     <member name="M:System.Security.AccessControl.NativeObjectSecurity.#ctor(System.Boolean,System.Security.AccessControl.ResourceType,System.String,System.Security.AccessControl.AccessControlSections)">
1146       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> class with the specified values. We recommend that the values of the <paramref name="includeSections" /> parameters passed to the constructor and persist methods be identical.</summary>
1147       <param name="isContainer">
1148         <see langword="true" /> if the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is a container object.</param>
1149       <param name="resourceType">The type of securable object with which the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated.</param>
1150       <param name="name">The name of the securable object with which the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated.</param>
1151       <param name="includeSections">One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> enumeration values that specifies the sections of the security descriptor (access rules, audit rules, owner, primary group) of the securable object to include in this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object.</param>
1152     </member>
1153     <member name="M:System.Security.AccessControl.NativeObjectSecurity.#ctor(System.Boolean,System.Security.AccessControl.ResourceType,System.String,System.Security.AccessControl.AccessControlSections,System.Security.AccessControl.NativeObjectSecurity.ExceptionFromErrorCode,System.Object)">
1154       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> class with the specified values. We recommend that the values of the <paramref name="includeSections" /> parameters passed to the constructor and persist methods be identical.</summary>
1155       <param name="isContainer">
1156         <see langword="true" /> if the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is a container object.</param>
1157       <param name="resourceType">The type of securable object with which the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated.</param>
1158       <param name="name">The name of the securable object with which the new <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated.</param>
1159       <param name="includeSections">One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> enumeration values that specifies the sections of the security descriptor (access rules, audit rules, owner, primary group) of the securable object to include in this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object.</param>
1160       <param name="exceptionFromErrorCode">A delegate implemented by integrators that provides custom exceptions.</param>
1161       <param name="exceptionContext">An object that contains contextual information about the source or destination of the exception.</param>
1162     </member>
1163     <member name="M:System.Security.AccessControl.NativeObjectSecurity.Persist(System.Runtime.InteropServices.SafeHandle,System.Security.AccessControl.AccessControlSections)">
1164       <summary>Saves the specified sections of the security descriptor associated with this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object to permanent storage. We recommend.persist that the values of the <paramref name="includeSections" /> parameters passed to the constructor and persist methods be identical.</summary>
1165       <param name="handle">The handle of the securable object with which this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated.</param>
1166       <param name="includeSections">One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> enumeration values that specifies the sections of the security descriptor (access rules, audit rules, owner, primary group) of the securable object to save.</param>
1167       <exception cref="T:System.IO.FileNotFoundException">The securable object with which this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated is either a directory or a file, and that directory or file could not be found.</exception>
1168     </member>
1169     <member name="M:System.Security.AccessControl.NativeObjectSecurity.Persist(System.Runtime.InteropServices.SafeHandle,System.Security.AccessControl.AccessControlSections,System.Object)">
1170       <summary>Saves the specified sections of the security descriptor associated with this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object to permanent storage. We recommend that the values of the <paramref name="includeSections" /> parameters passed to the constructor and persist methods be identical.</summary>
1171       <param name="handle">The handle of the securable object with which this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated.</param>
1172       <param name="includeSections">One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> enumeration values that specifies the sections of the security descriptor (access rules, audit rules, owner, primary group) of the securable object to save.</param>
1173       <param name="exceptionContext">An object that contains contextual information about the source or destination of the exception.</param>
1174       <exception cref="T:System.IO.FileNotFoundException">The securable object with which this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated is either a directory or a file, and that directory or file could not be found.</exception>
1175     </member>
1176     <member name="M:System.Security.AccessControl.NativeObjectSecurity.Persist(System.String,System.Security.AccessControl.AccessControlSections)">
1177       <summary>Saves the specified sections of the security descriptor associated with this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object to permanent storage. We recommend that the values of the <paramref name="includeSections" /> parameters passed to the constructor and persist methods be identical.</summary>
1178       <param name="name">The name of the securable object with which this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated.</param>
1179       <param name="includeSections">One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> enumeration values that specifies the sections of the security descriptor (access rules, audit rules, owner, primary group) of the securable object to save.</param>
1180       <exception cref="T:System.IO.FileNotFoundException">The securable object with which this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated is either a directory or a file, and that directory or file could not be found.</exception>
1181     </member>
1182     <member name="M:System.Security.AccessControl.NativeObjectSecurity.Persist(System.String,System.Security.AccessControl.AccessControlSections,System.Object)">
1183       <summary>Saves the specified sections of the security descriptor associated with this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object to permanent storage. We recommend that the values of the <paramref name="includeSections" /> parameters passed to the constructor and persist methods be identical.</summary>
1184       <param name="name">The name of the securable object with which this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated.</param>
1185       <param name="includeSections">One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> enumeration values that specifies the sections of the security descriptor (access rules, audit rules, owner, primary group) of the securable object to save.</param>
1186       <param name="exceptionContext">An object that contains contextual information about the source or destination of the exception.</param>
1187       <exception cref="T:System.IO.FileNotFoundException">The securable object with which this <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated is either a directory or a file, and that directory or file could not be found.</exception>
1188     </member>
1189     <member name="T:System.Security.AccessControl.NativeObjectSecurity.ExceptionFromErrorCode">
1190       <summary>Provides a way for integrators to map numeric error codes to specific exceptions that they create.</summary>
1191       <param name="errorCode">The numeric error code.</param>
1192       <param name="name">The name of the securable object with which the <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated.</param>
1193       <param name="handle">The handle of the securable object with which the <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> object is associated.</param>
1194       <param name="context">An object that contains contextual information about the source or destination of the exception.</param>
1195       <returns>The <see cref="T:System.Exception" /> this delegate creates.</returns>
1196     </member>
1197     <member name="T:System.Security.AccessControl.ObjectAccessRule">
1198       <summary>Represents a combination of a user's identity, an access mask, and an access control type (allow or deny). An <see cref="T:System.Security.AccessControl.ObjectAccessRule" /> object also contains information about the type of object to which the rule applies, the type of child object that can inherit the rule, how the rule is inherited by child objects, and how that inheritance is propagated.</summary>
1199     </member>
1200     <member name="M:System.Security.AccessControl.ObjectAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Guid,System.Guid,System.Security.AccessControl.AccessControlType)">
1201       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.ObjectAccessRule" /> class with the specified values.</summary>
1202       <param name="identity">The identity to which the access rule applies.  It must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />.</param>
1203       <param name="accessMask">The access mask of this rule. The access mask is a 32-bit collection of anonymous bits, the meaning of which is defined by the individual integrators.</param>
1204       <param name="isInherited">
1205         <see langword="true" /> if this rule is inherited from a parent container.</param>
1206       <param name="inheritanceFlags">Specifies the inheritance properties of the access rule.</param>
1207       <param name="propagationFlags">Specifies whether inherited access rules are automatically propagated. The propagation flags are ignored if <paramref name="inheritanceFlags" /> is set to <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />.</param>
1208       <param name="objectType">The type of object to which the rule applies.</param>
1209       <param name="inheritedObjectType">The type of child object that can inherit the rule.</param>
1210       <param name="type">Specifies whether this rule allows or denies access.</param>
1211       <exception cref="T:System.ArgumentException">The value of the <paramref name="identity" /> parameter cannot be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />, or the <paramref name="type" /> parameter contains an invalid value.</exception>
1212       <exception cref="T:System.ArgumentOutOfRangeException">The value of the <paramref name="accessMask" /> parameter is 0, or the <paramref name="inheritanceFlags" /> or <paramref name="propagationFlags" /> parameters contain unrecognized flag values.</exception>
1213     </member>
1214     <member name="P:System.Security.AccessControl.ObjectAccessRule.InheritedObjectType">
1215       <summary>Gets the type of child object that can inherit the <see cref="T:System.Security.AccessControl.ObjectAccessRule" /> object.</summary>
1216       <returns>The type of child object that can inherit the <see cref="T:System.Security.AccessControl.ObjectAccessRule" /> object.</returns>
1217     </member>
1218     <member name="P:System.Security.AccessControl.ObjectAccessRule.ObjectFlags">
1219       <summary>Gets flags that specify if the <see cref="P:System.Security.AccessControl.ObjectAccessRule.ObjectType" /> and <see cref="P:System.Security.AccessControl.ObjectAccessRule.InheritedObjectType" /> properties of the <see cref="T:System.Security.AccessControl.ObjectAccessRule" /> object contain valid values.</summary>
1220       <returns>
1221         <see cref="F:System.Security.AccessControl.ObjectAceFlags.ObjectAceTypePresent" /> specifies that the <see cref="P:System.Security.AccessControl.ObjectAccessRule.ObjectType" /> property contains a valid value. <see cref="F:System.Security.AccessControl.ObjectAceFlags.InheritedObjectAceTypePresent" /> specifies that the <see cref="P:System.Security.AccessControl.ObjectAccessRule.InheritedObjectType" /> property contains a valid value. These values can be combined with a logical OR.</returns>
1222     </member>
1223     <member name="P:System.Security.AccessControl.ObjectAccessRule.ObjectType">
1224       <summary>Gets the type of object to which the <see cref="T:System.Security.AccessControl.ObjectAccessRule" /> applies.</summary>
1225       <returns>The type of object to which the <see cref="T:System.Security.AccessControl.ObjectAccessRule" /> applies.</returns>
1226     </member>
1227     <member name="T:System.Security.AccessControl.ObjectAce">
1228       <summary>Controls access to Directory Services objects. This class represents an Access Control Entry (ACE) associated with a directory object.</summary>
1229     </member>
1230     <member name="M:System.Security.AccessControl.ObjectAce.#ctor(System.Security.AccessControl.AceFlags,System.Security.AccessControl.AceQualifier,System.Int32,System.Security.Principal.SecurityIdentifier,System.Security.AccessControl.ObjectAceFlags,System.Guid,System.Guid,System.Boolean,System.Byte[])">
1231       <summary>Initiates a new instance of the <see cref="T:System.Security.AccessControl.ObjectAce" /> class.</summary>
1232       <param name="aceFlags">The inheritance, inheritance propagation, and auditing conditions for the new Access Control Entry (ACE).</param>
1233       <param name="qualifier">The use of the new ACE.</param>
1234       <param name="accessMask">The access mask for the ACE.</param>
1235       <param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> associated with the new ACE.</param>
1236       <param name="flags">Whether the <paramref name="type" /> and <paramref name="inheritedType" /> parameters contain valid object GUIDs.</param>
1237       <param name="type">A GUID that identifies the object type to which the new ACE applies.</param>
1238       <param name="inheritedType">A GUID that identifies the object type that can inherit the new ACE.</param>
1239       <param name="isCallback">
1240         <see langword="true" /> if the new ACE is a callback type ACE.</param>
1241       <param name="opaque">Opaque data associated with the new ACE. This is allowed only for callback ACE types. The length of this array must not be greater than the return value of the <see cref="M:System.Security.AccessControl.ObjectAce.MaxOpaqueLength(System.Boolean)" /> method.</param>
1242       <exception cref="T:System.ArgumentOutOfRangeException">The qualifier parameter contains an invalid value or the length of the value of the opaque parameter is greater than the return value of the <see cref="M:System.Security.AccessControl.ObjectAce.MaxOpaqueLength(System.Boolean)" /> method.</exception>
1243     </member>
1244     <member name="M:System.Security.AccessControl.ObjectAce.GetBinaryForm(System.Byte[],System.Int32)">
1245       <summary>Marshals the contents of the <see cref="T:System.Security.AccessControl.ObjectAce" /> object into the specified byte array beginning at the specified offset.</summary>
1246       <param name="binaryForm">The byte array into which the contents of the <see cref="T:System.Security.AccessControl.ObjectAce" /> is marshaled.</param>
1247       <param name="offset">The offset at which to start marshaling.</param>
1248       <exception cref="T:System.ArgumentOutOfRangeException">
1249         <paramref name="offset" /> is negative or too high to allow the entire <see cref="T:System.Security.AccessControl.ObjectAce" /> to be copied into <paramref name="array" />.</exception>
1250     </member>
1251     <member name="M:System.Security.AccessControl.ObjectAce.MaxOpaqueLength(System.Boolean)">
1252       <summary>Returns the maximum allowed length, in bytes, of an opaque data BLOB for callback Access Control Entries (ACEs).</summary>
1253       <param name="isCallback">True if the <see cref="T:System.Security.AccessControl.ObjectAce" /> is a callback ACE type.</param>
1254       <returns>The maximum allowed length, in bytes, of an opaque data BLOB for callback Access Control Entries (ACEs).</returns>
1255     </member>
1256     <member name="P:System.Security.AccessControl.ObjectAce.BinaryLength">
1257       <summary>Gets the length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.ObjectAce" /> object. This length should be used before marshaling the ACL into a binary array with the <see cref="M:System.Security.AccessControl.ObjectAce.GetBinaryForm(System.Byte[],System.Int32)" /> method.</summary>
1258       <returns>The length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.ObjectAce" /> object.</returns>
1259     </member>
1260     <member name="P:System.Security.AccessControl.ObjectAce.InheritedObjectAceType">
1261       <summary>Gets or sets the GUID of the object type that can inherit the Access Control Entry (ACE) that this <see cref="T:System.Security.AccessControl.ObjectAce" /> object represents.</summary>
1262       <returns>The GUID of the object type that can inherit the Access Control Entry (ACE) that this <see cref="T:System.Security.AccessControl.ObjectAce" /> object represents.</returns>
1263     </member>
1264     <member name="P:System.Security.AccessControl.ObjectAce.ObjectAceFlags">
1265       <summary>Gets or sets flags that specify whether the <see cref="P:System.Security.AccessControl.ObjectAce.ObjectAceType" /> and <see cref="P:System.Security.AccessControl.ObjectAce.InheritedObjectAceType" /> properties contain values that identify valid object types.</summary>
1266       <returns>On or more members of the <see cref="T:System.Security.AccessControl.ObjectAceFlags" /> enumeration combined with a logical OR operation.</returns>
1267     </member>
1268     <member name="P:System.Security.AccessControl.ObjectAce.ObjectAceType">
1269       <summary>Gets or sets the GUID of the object type associated with this <see cref="T:System.Security.AccessControl.ObjectAce" /> object.</summary>
1270       <returns>The GUID of the object type associated with this <see cref="T:System.Security.AccessControl.ObjectAce" /> object.</returns>
1271     </member>
1272     <member name="T:System.Security.AccessControl.ObjectAceFlags">
1273       <summary>Specifies the presence of object types for Access Control Entries (ACEs).</summary>
1274     </member>
1275     <member name="F:System.Security.AccessControl.ObjectAceFlags.InheritedObjectAceTypePresent">
1276       <summary>The type of object that can inherit the ACE.</summary>
1277     </member>
1278     <member name="F:System.Security.AccessControl.ObjectAceFlags.None">
1279       <summary>No object types are present.</summary>
1280     </member>
1281     <member name="F:System.Security.AccessControl.ObjectAceFlags.ObjectAceTypePresent">
1282       <summary>The type of object that is associated with the ACE is present.</summary>
1283     </member>
1284     <member name="T:System.Security.AccessControl.ObjectAuditRule">
1285       <summary>Represents a combination of a user's identity, an access mask, and audit conditions. An <see cref="T:System.Security.AccessControl.ObjectAuditRule" /> object also contains information about the type of object to which the rule applies, the type of child object that can inherit the rule, how the rule is inherited by child objects, and how that inheritance is propagated.</summary>
1286     </member>
1287     <member name="M:System.Security.AccessControl.ObjectAuditRule.#ctor(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Guid,System.Guid,System.Security.AccessControl.AuditFlags)">
1288       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.ObjectAuditRule" /> class.</summary>
1289       <param name="identity">The identity to which the access rule applies.  It must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />.</param>
1290       <param name="accessMask">The access mask of this rule. The access mask is a 32-bit collection of anonymous bits, the meaning of which is defined by the individual integrators.</param>
1291       <param name="isInherited">
1292         <see langword="true" /> if this rule is inherited from a parent container.</param>
1293       <param name="inheritanceFlags">Specifies the inheritance properties of the access rule.</param>
1294       <param name="propagationFlags">Whether inherited access rules are automatically propagated. The propagation flags are ignored if <paramref name="inheritanceFlags" /> is set to <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />.</param>
1295       <param name="objectType">The type of object to which the rule applies.</param>
1296       <param name="inheritedObjectType">The type of child object that can inherit the rule.</param>
1297       <param name="auditFlags">The audit conditions.</param>
1298       <exception cref="T:System.ArgumentException">The value of the <paramref name="identity" /> parameter cannot be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />, or the <paramref name="type" /> parameter contains an invalid value.</exception>
1299       <exception cref="T:System.ArgumentOutOfRangeException">The value of the <paramref name="accessMask" /> parameter is 0, or the <paramref name="inheritanceFlags" /> or <paramref name="propagationFlags" /> parameters contain unrecognized flag values.</exception>
1300     </member>
1301     <member name="P:System.Security.AccessControl.ObjectAuditRule.InheritedObjectType">
1302       <summary>Gets the type of child object that can inherit the <see cref="T:System.Security.AccessControl.ObjectAuditRule" /> object.</summary>
1303       <returns>The type of child object that can inherit the <see cref="T:System.Security.AccessControl.ObjectAuditRule" /> object.</returns>
1304     </member>
1305     <member name="P:System.Security.AccessControl.ObjectAuditRule.ObjectFlags">
1306       <summary>
1307         <see cref="P:System.Security.AccessControl.ObjectAuditRule.ObjectType" /> and <see cref="P:System.Security.AccessControl.ObjectAuditRule.InheritedObjectType" /> properties of the <see cref="T:System.Security.AccessControl.ObjectAuditRule" /> object contain valid values.</summary>
1308       <returns>
1309         <see cref="F:System.Security.AccessControl.ObjectAceFlags.ObjectAceTypePresent" /> specifies that the <see cref="P:System.Security.AccessControl.ObjectAuditRule.ObjectType" /> property contains a valid value. <see cref="F:System.Security.AccessControl.ObjectAceFlags.InheritedObjectAceTypePresent" /> specifies that the <see cref="P:System.Security.AccessControl.ObjectAuditRule.InheritedObjectType" /> property contains a valid value. These values can be combined with a logical OR.</returns>
1310     </member>
1311     <member name="P:System.Security.AccessControl.ObjectAuditRule.ObjectType">
1312       <summary>Gets the type of object to which the <see cref="T:System.Security.AccessControl.ObjectAuditRule" /> applies.</summary>
1313       <returns>The type of object to which the <see cref="T:System.Security.AccessControl.ObjectAuditRule" /> applies.</returns>
1314     </member>
1315     <member name="T:System.Security.AccessControl.ObjectSecurity">
1316       <summary>Provides the ability to control access to objects without direct manipulation of Access Control Lists (ACLs). This class is the abstract base class for the <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> and <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> classes.</summary>
1317     </member>
1318     <member name="M:System.Security.AccessControl.ObjectSecurity.#ctor">
1319       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.ObjectSecurity" /> class.</summary>
1320     </member>
1321     <member name="M:System.Security.AccessControl.ObjectSecurity.#ctor(System.Boolean,System.Boolean)">
1322       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.ObjectSecurity" /> class.</summary>
1323       <param name="isContainer">
1324         <see langword="true" /> if the new <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object is a container object.</param>
1325       <param name="isDS">True if the new <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object is a directory object.</param>
1326     </member>
1327     <member name="M:System.Security.AccessControl.ObjectSecurity.#ctor(System.Security.AccessControl.CommonSecurityDescriptor)">
1328       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.ObjectSecurity" /> class.</summary>
1329       <param name="securityDescriptor">The <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> of the new <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> instance.</param>
1330     </member>
1331     <member name="M:System.Security.AccessControl.ObjectSecurity.AccessRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)">
1332       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.AccessRule" /> class with the specified values.</summary>
1333       <param name="identityReference">The identity to which the access rule applies.  It must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />.</param>
1334       <param name="accessMask">The access mask of this rule. The access mask is a 32-bit collection of anonymous bits, the meaning of which is defined by the individual integrators.</param>
1335       <param name="isInherited">true if this rule is inherited from a parent container.</param>
1336       <param name="inheritanceFlags">Specifies the inheritance properties of the access rule.</param>
1337       <param name="propagationFlags">Specifies whether inherited access rules are automatically propagated. The propagation flags are ignored if <paramref name="inheritanceFlags" /> is set to <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />.</param>
1338       <param name="type">Specifies the valid access control type.</param>
1339       <returns>The <see cref="T:System.Security.AccessControl.AccessRule" /> object that this method creates.</returns>
1340     </member>
1341     <member name="M:System.Security.AccessControl.ObjectSecurity.AuditRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)">
1342       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.AuditRule" /> class with the specified values.</summary>
1343       <param name="identityReference">The identity to which the audit rule applies.  It must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />.</param>
1344       <param name="accessMask">The access mask of this rule. The access mask is a 32-bit collection of anonymous bits, the meaning of which is defined by the individual integrators.</param>
1345       <param name="isInherited">
1346         <see langword="true" /> if this rule is inherited from a parent container.</param>
1347       <param name="inheritanceFlags">Specifies the inheritance properties of the audit rule.</param>
1348       <param name="propagationFlags">Specifies whether inherited audit rules are automatically propagated. The propagation flags are ignored if <paramref name="inheritanceFlags" /> is set to <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />.</param>
1349       <param name="flags">Specifies the conditions for which the rule is audited.</param>
1350       <returns>The <see cref="T:System.Security.AccessControl.AuditRule" /> object that this method creates.</returns>
1351     </member>
1352     <member name="M:System.Security.AccessControl.ObjectSecurity.GetGroup(System.Type)">
1353       <summary>Gets the primary group associated with the specified owner.</summary>
1354       <param name="targetType">The owner for which to get the primary group.</param>
1355       <returns>The primary group associated with the specified owner.</returns>
1356     </member>
1357     <member name="M:System.Security.AccessControl.ObjectSecurity.GetOwner(System.Type)">
1358       <summary>Gets the owner associated with the specified primary group.</summary>
1359       <param name="targetType">The primary group for which to get the owner.</param>
1360       <exception cref="T:System.ArgumentNullException">
1361         <paramref name="targetType" /> is <see langword="null" />.</exception>
1362       <exception cref="T:System.ArgumentException">
1363         <paramref name="targetType" /> is not an <see cref="T:System.Security.Principal.IdentityReference" /> type.</exception>
1364       <exception cref="T:System.Security.Principal.IdentityNotMappedException">Some or all identity references could not be translated.</exception>
1365       <exception cref="T:System.SystemException">A Win32 error code was returned.</exception>
1366       <returns>The owner associated with the specified group.</returns>
1367     </member>
1368     <member name="M:System.Security.AccessControl.ObjectSecurity.GetSecurityDescriptorBinaryForm">
1369       <summary>Returns an array of byte values that represents the security descriptor information for this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object.</summary>
1370       <returns>An array of byte values that represents the security descriptor for this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object. This method returns <see langword="null" /> if there is no security information in this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object.</returns>
1371     </member>
1372     <member name="M:System.Security.AccessControl.ObjectSecurity.GetSecurityDescriptorSddlForm(System.Security.AccessControl.AccessControlSections)">
1373       <summary>Returns the Security Descriptor Definition Language (SDDL) representation of the specified sections of the security descriptor associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object.</summary>
1374       <param name="includeSections">Specifies which sections (access rules, audit rules, primary group, owner) of the security descriptor to get.</param>
1375       <returns>The SDDL representation of the specified sections of the security descriptor associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object.</returns>
1376     </member>
1377     <member name="M:System.Security.AccessControl.ObjectSecurity.IsSddlConversionSupported">
1378       <summary>Returns a Boolean value that specifies whether the security descriptor associated with this  <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object can be converted to the Security Descriptor Definition Language (SDDL) format.</summary>
1379       <returns>
1380         <see langword="true" /> if the security descriptor associated with this  <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object can be converted to the Security Descriptor Definition Language (SDDL) format; otherwise, <see langword="false" />.</returns>
1381     </member>
1382     <member name="M:System.Security.AccessControl.ObjectSecurity.ModifyAccess(System.Security.AccessControl.AccessControlModification,System.Security.AccessControl.AccessRule,System.Boolean@)">
1383       <summary>Applies the specified modification to the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object.</summary>
1384       <param name="modification">The modification to apply to the DACL.</param>
1385       <param name="rule">The access rule to modify.</param>
1386       <param name="modified">
1387         <see langword="true" /> if the DACL is successfully modified; otherwise, <see langword="false" />.</param>
1388       <returns>
1389         <see langword="true" /> if the DACL is successfully modified; otherwise, <see langword="false" />.</returns>
1390     </member>
1391     <member name="M:System.Security.AccessControl.ObjectSecurity.ModifyAccessRule(System.Security.AccessControl.AccessControlModification,System.Security.AccessControl.AccessRule,System.Boolean@)">
1392       <summary>Applies the specified modification to the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object.</summary>
1393       <param name="modification">The modification to apply to the DACL.</param>
1394       <param name="rule">The access rule to modify.</param>
1395       <param name="modified">
1396         <see langword="true" /> if the DACL is actually modified; otherwise, <see langword="false" />.</param>
1397       <returns>
1398         <see langword="true" /> if the DACL is successfully modified; otherwise, <see langword="false" />.</returns>
1399     </member>
1400     <member name="M:System.Security.AccessControl.ObjectSecurity.ModifyAudit(System.Security.AccessControl.AccessControlModification,System.Security.AccessControl.AuditRule,System.Boolean@)">
1401       <summary>Applies the specified modification to the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object.</summary>
1402       <param name="modification">The modification to apply to the SACL.</param>
1403       <param name="rule">The audit rule to modify.</param>
1404       <param name="modified">
1405         <see langword="true" /> if the SACL is actually modified; otherwise, <see langword="false" />.</param>
1406       <returns>
1407         <see langword="true" /> if the SACL is successfully modified; otherwise, <see langword="false" />.</returns>
1408     </member>
1409     <member name="M:System.Security.AccessControl.ObjectSecurity.ModifyAuditRule(System.Security.AccessControl.AccessControlModification,System.Security.AccessControl.AuditRule,System.Boolean@)">
1410       <summary>Applies the specified modification to the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object.</summary>
1411       <param name="modification">The modification to apply to the SACL.</param>
1412       <param name="rule">The audit rule to modify.</param>
1413       <param name="modified">
1414         <see langword="true" /> if the SACL is successfully modified; otherwise, <see langword="false" />.</param>
1415       <returns>
1416         <see langword="true" /> if the SACL is successfully modified; otherwise, <see langword="false" />.</returns>
1417     </member>
1418     <member name="M:System.Security.AccessControl.ObjectSecurity.Persist(System.Boolean,System.String,System.Security.AccessControl.AccessControlSections)">
1419       <summary>Saves the specified sections of the security descriptor associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object to permanent storage. We recommend that the values of the <paramref name="includeSections" /> parameters passed to the constructor and persist methods be identical.</summary>
1420       <param name="enableOwnershipPrivilege">
1421         <see langword="true" /> to enable the privilege that allows the caller to take ownership of the object.</param>
1422       <param name="name">The name used to retrieve the persisted information.</param>
1423       <param name="includeSections">One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> enumeration values that specifies the sections of the security descriptor (access rules, audit rules, owner, primary group) of the securable object to save.</param>
1424     </member>
1425     <member name="M:System.Security.AccessControl.ObjectSecurity.Persist(System.Runtime.InteropServices.SafeHandle,System.Security.AccessControl.AccessControlSections)">
1426       <summary>Saves the specified sections of the security descriptor associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object to permanent storage. We recommend that the values of the <paramref name="includeSections" /> parameters passed to the constructor and persist methods be identical.</summary>
1427       <param name="handle">The handle used to retrieve the persisted information.</param>
1428       <param name="includeSections">One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> enumeration values that specifies the sections of the security descriptor (access rules, audit rules, owner, primary group) of the securable object to save.</param>
1429     </member>
1430     <member name="M:System.Security.AccessControl.ObjectSecurity.Persist(System.String,System.Security.AccessControl.AccessControlSections)">
1431       <summary>Saves the specified sections of the security descriptor associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object to permanent storage. We recommend that the values of the <paramref name="includeSections" /> parameters passed to the constructor and persist methods be identical.</summary>
1432       <param name="name">The name used to retrieve the persisted information.</param>
1433       <param name="includeSections">One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> enumeration values that specifies the sections of the security descriptor (access rules, audit rules, owner, primary group) of the securable object to save.</param>
1434     </member>
1435     <member name="M:System.Security.AccessControl.ObjectSecurity.PurgeAccessRules(System.Security.Principal.IdentityReference)">
1436       <summary>Removes all access rules associated with the specified <see cref="T:System.Security.Principal.IdentityReference" />.</summary>
1437       <param name="identity">The <see cref="T:System.Security.Principal.IdentityReference" /> for which to remove all access rules.</param>
1438       <exception cref="T:System.InvalidOperationException">All access rules are not in canonical order.</exception>
1439     </member>
1440     <member name="M:System.Security.AccessControl.ObjectSecurity.PurgeAuditRules(System.Security.Principal.IdentityReference)">
1441       <summary>Removes all audit rules associated with the specified <see cref="T:System.Security.Principal.IdentityReference" />.</summary>
1442       <param name="identity">The <see cref="T:System.Security.Principal.IdentityReference" /> for which to remove all audit rules.</param>
1443       <exception cref="T:System.InvalidOperationException">All audit rules are not in canonical order.</exception>
1444     </member>
1445     <member name="M:System.Security.AccessControl.ObjectSecurity.ReadLock">
1446       <summary>Locks this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object for read access.</summary>
1447     </member>
1448     <member name="M:System.Security.AccessControl.ObjectSecurity.ReadUnlock">
1449       <summary>Unlocks this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object for read access.</summary>
1450     </member>
1451     <member name="M:System.Security.AccessControl.ObjectSecurity.SetAccessRuleProtection(System.Boolean,System.Boolean)">
1452       <summary>Sets or removes protection of the access rules associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object. Protected access rules cannot be modified by parent objects through inheritance.</summary>
1453       <param name="isProtected">
1454         <see langword="true" /> to protect the access rules associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object from inheritance; <see langword="false" /> to allow inheritance.</param>
1455       <param name="preserveInheritance">
1456         <see langword="true" /> to preserve inherited access rules; <see langword="false" /> to remove inherited access rules. This parameter is ignored if <paramref name="isProtected" /> is <see langword="false" />.</param>
1457       <exception cref="T:System.InvalidOperationException">This method attempts to remove inherited rules from a non-canonical Discretionary Access Control List (DACL).</exception>
1458     </member>
1459     <member name="M:System.Security.AccessControl.ObjectSecurity.SetAuditRuleProtection(System.Boolean,System.Boolean)">
1460       <summary>Sets or removes protection of the audit rules associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object. Protected audit rules cannot be modified by parent objects through inheritance.</summary>
1461       <param name="isProtected">
1462         <see langword="true" /> to protect the audit rules associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object from inheritance; <see langword="false" /> to allow inheritance.</param>
1463       <param name="preserveInheritance">
1464         <see langword="true" /> to preserve inherited audit rules; <see langword="false" /> to remove inherited audit rules. This parameter is ignored if <paramref name="isProtected" /> is <see langword="false" />.</param>
1465       <exception cref="T:System.InvalidOperationException">This method attempts to remove inherited rules from a non-canonical System Access Control List (SACL).</exception>
1466     </member>
1467     <member name="M:System.Security.AccessControl.ObjectSecurity.SetGroup(System.Security.Principal.IdentityReference)">
1468       <summary>Sets the primary group for the security descriptor associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object.</summary>
1469       <param name="identity">The primary group to set.</param>
1470     </member>
1471     <member name="M:System.Security.AccessControl.ObjectSecurity.SetOwner(System.Security.Principal.IdentityReference)">
1472       <summary>Sets the owner for the security descriptor associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object.</summary>
1473       <param name="identity">The owner to set.</param>
1474     </member>
1475     <member name="M:System.Security.AccessControl.ObjectSecurity.SetSecurityDescriptorBinaryForm(System.Byte[])">
1476       <summary>Sets the security descriptor for this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object from the specified array of byte values.</summary>
1477       <param name="binaryForm">The array of bytes from which to set the security descriptor.</param>
1478     </member>
1479     <member name="M:System.Security.AccessControl.ObjectSecurity.SetSecurityDescriptorBinaryForm(System.Byte[],System.Security.AccessControl.AccessControlSections)">
1480       <summary>Sets the specified sections of the security descriptor for this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object from the specified array of byte values.</summary>
1481       <param name="binaryForm">The array of bytes from which to set the security descriptor.</param>
1482       <param name="includeSections">The sections (access rules, audit rules, owner, primary group) of the security descriptor to set.</param>
1483     </member>
1484     <member name="M:System.Security.AccessControl.ObjectSecurity.SetSecurityDescriptorSddlForm(System.String)">
1485       <summary>Sets the security descriptor for this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object from the specified Security Descriptor Definition Language (SDDL) string.</summary>
1486       <param name="sddlForm">The SDDL string from which to set the security descriptor.</param>
1487     </member>
1488     <member name="M:System.Security.AccessControl.ObjectSecurity.SetSecurityDescriptorSddlForm(System.String,System.Security.AccessControl.AccessControlSections)">
1489       <summary>Sets the specified sections of the security descriptor for this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object from the specified Security Descriptor Definition Language (SDDL) string.</summary>
1490       <param name="sddlForm">The SDDL string from which to set the security descriptor.</param>
1491       <param name="includeSections">The sections (access rules, audit rules, owner, primary group) of the security descriptor to set.</param>
1492     </member>
1493     <member name="M:System.Security.AccessControl.ObjectSecurity.WriteLock">
1494       <summary>Locks this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object for write access.</summary>
1495     </member>
1496     <member name="M:System.Security.AccessControl.ObjectSecurity.WriteUnlock">
1497       <summary>Unlocks this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object for write access.</summary>
1498     </member>
1499     <member name="P:System.Security.AccessControl.ObjectSecurity.AccessRightType">
1500       <summary>Gets the <see cref="T:System.Type" /> of the securable object associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object.</summary>
1501       <returns>The type of the securable object associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object.</returns>
1502     </member>
1503     <member name="P:System.Security.AccessControl.ObjectSecurity.AccessRulesModified">
1504       <summary>Gets or sets a Boolean value that specifies whether the access rules associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object have been modified.</summary>
1505       <returns>
1506         <see langword="true" /> if the access rules associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object have been modified; otherwise, <see langword="false" />.</returns>
1507     </member>
1508     <member name="P:System.Security.AccessControl.ObjectSecurity.AccessRuleType">
1509       <summary>Gets the <see cref="T:System.Type" /> of the object associated with the access rules of this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object. The <see cref="T:System.Type" /> object must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" /> object.</summary>
1510       <returns>The type of the object associated with the access rules of this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object.</returns>
1511     </member>
1512     <member name="P:System.Security.AccessControl.ObjectSecurity.AreAccessRulesCanonical">
1513       <summary>Gets a Boolean value that specifies whether the access rules associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object are in canonical order.</summary>
1514       <returns>
1515         <see langword="true" /> if the access rules are in canonical order; otherwise, <see langword="false" />.</returns>
1516     </member>
1517     <member name="P:System.Security.AccessControl.ObjectSecurity.AreAccessRulesProtected">
1518       <summary>Gets a Boolean value that specifies whether the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object is protected.</summary>
1519       <returns>
1520         <see langword="true" /> if the DACL is protected; otherwise, <see langword="false" />.</returns>
1521     </member>
1522     <member name="P:System.Security.AccessControl.ObjectSecurity.AreAuditRulesCanonical">
1523       <summary>Gets a Boolean value that specifies whether the audit rules associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object are in canonical order.</summary>
1524       <returns>
1525         <see langword="true" /> if the audit rules are in canonical order; otherwise, <see langword="false" />.</returns>
1526     </member>
1527     <member name="P:System.Security.AccessControl.ObjectSecurity.AreAuditRulesProtected">
1528       <summary>Gets a Boolean value that specifies whether the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object is protected.</summary>
1529       <returns>
1530         <see langword="true" /> if the SACL is protected; otherwise, <see langword="false" />.</returns>
1531     </member>
1532     <member name="P:System.Security.AccessControl.ObjectSecurity.AuditRulesModified">
1533       <summary>Gets or sets a Boolean value that specifies whether the audit rules associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object have been modified.</summary>
1534       <returns>
1535         <see langword="true" /> if the audit rules associated with this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object have been modified; otherwise, <see langword="false" />.</returns>
1536     </member>
1537     <member name="P:System.Security.AccessControl.ObjectSecurity.AuditRuleType">
1538       <summary>Gets the <see cref="T:System.Type" /> object associated with the audit rules of this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object. The <see cref="T:System.Type" /> object must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" /> object.</summary>
1539       <returns>The type of the object associated with the audit rules of this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object.</returns>
1540     </member>
1541     <member name="P:System.Security.AccessControl.ObjectSecurity.GroupModified">
1542       <summary>Gets or sets a Boolean value that specifies whether the group associated with the securable object has been modified.</summary>
1543       <returns>
1544         <see langword="true" /> if the group associated with the securable object has been modified; otherwise, <see langword="false" />.</returns>
1545     </member>
1546     <member name="P:System.Security.AccessControl.ObjectSecurity.IsContainer">
1547       <summary>Gets a Boolean value that specifies whether this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object is a container object.</summary>
1548       <returns>
1549         <see langword="true" /> if the <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object is a container object; otherwise, <see langword="false" />.</returns>
1550     </member>
1551     <member name="P:System.Security.AccessControl.ObjectSecurity.IsDS">
1552       <summary>Gets a Boolean value that specifies whether this <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object is a directory object.</summary>
1553       <returns>
1554         <see langword="true" /> if the <see cref="T:System.Security.AccessControl.ObjectSecurity" /> object is a directory object; otherwise, <see langword="false" />.</returns>
1555     </member>
1556     <member name="P:System.Security.AccessControl.ObjectSecurity.OwnerModified">
1557       <summary>Gets or sets a Boolean value that specifies whether the owner of the securable object has been modified.</summary>
1558       <returns>
1559         <see langword="true" /> if the owner of the securable object has been modified; otherwise, <see langword="false" />.</returns>
1560     </member>
1561     <member name="P:System.Security.AccessControl.ObjectSecurity.SecurityDescriptor">
1562       <summary>Gets the security descriptor for this instance.</summary>
1563       <returns>The security descriptor for this instance.</returns>
1564     </member>
1565     <member name="T:System.Security.AccessControl.ObjectSecurity`1">
1566       <summary>Provides the ability to control access to objects without direct manipulation of Access Control Lists (ACLs); also grants the ability to type-cast access rights.</summary>
1567       <typeparam name="T">The access rights for the object.</typeparam>
1568     </member>
1569     <member name="M:System.Security.AccessControl.ObjectSecurity`1.#ctor(System.Boolean,System.Security.AccessControl.ResourceType)">
1570       <summary>Initializes a new instance of the ObjectSecurity`1 class.</summary>
1571       <param name="isContainer">
1572         <see langword="true" /> if the new <see cref="T:System.Security.AccessControl.ObjectSecurity`1" /> object is a container object.</param>
1573       <param name="resourceType">The type of resource.</param>
1574     </member>
1575     <member name="M:System.Security.AccessControl.ObjectSecurity`1.#ctor(System.Boolean,System.Security.AccessControl.ResourceType,System.Runtime.InteropServices.SafeHandle,System.Security.AccessControl.AccessControlSections)">
1576       <summary>Initializes a new instance of the ObjectSecurity`1 class.</summary>
1577       <param name="isContainer">
1578         <see langword="true" /> if the new <see cref="T:System.Security.AccessControl.ObjectSecurity`1" /> object is a container object.</param>
1579       <param name="resourceType">The type of resource.</param>
1580       <param name="safeHandle">A handle.</param>
1581       <param name="includeSections">The sections to include.</param>
1582     </member>
1583     <member name="M:System.Security.AccessControl.ObjectSecurity`1.#ctor(System.Boolean,System.Security.AccessControl.ResourceType,System.Runtime.InteropServices.SafeHandle,System.Security.AccessControl.AccessControlSections,System.Security.AccessControl.NativeObjectSecurity.ExceptionFromErrorCode,System.Object)">
1584       <summary>Initializes a new instance of the ObjectSecurity`1 class.</summary>
1585       <param name="isContainer">
1586         <see langword="true" /> if the new <see cref="T:System.Security.AccessControl.ObjectSecurity`1" /> object is a container object.</param>
1587       <param name="resourceType">The type of resource.</param>
1588       <param name="safeHandle">A handle.</param>
1589       <param name="includeSections">The sections to include.</param>
1590       <param name="exceptionFromErrorCode">A delegate implemented by integrators that provides custom exceptions.</param>
1591       <param name="exceptionContext">An object that contains contextual information about the source or destination of the exception.</param>
1592     </member>
1593     <member name="M:System.Security.AccessControl.ObjectSecurity`1.#ctor(System.Boolean,System.Security.AccessControl.ResourceType,System.String,System.Security.AccessControl.AccessControlSections)">
1594       <summary>Initializes a new instance of the ObjectSecurity`1 class.</summary>
1595       <param name="isContainer">
1596         <see langword="true" /> if the new <see cref="T:System.Security.AccessControl.ObjectSecurity`1" /> object is a container object.</param>
1597       <param name="resourceType">The type of resource.</param>
1598       <param name="name">The name of the securable object with which the new <see cref="T:System.Security.AccessControl.ObjectSecurity`1" /> object is associated.</param>
1599       <param name="includeSections">The sections to include.</param>
1600     </member>
1601     <member name="M:System.Security.AccessControl.ObjectSecurity`1.#ctor(System.Boolean,System.Security.AccessControl.ResourceType,System.String,System.Security.AccessControl.AccessControlSections,System.Security.AccessControl.NativeObjectSecurity.ExceptionFromErrorCode,System.Object)">
1602       <summary>Initializes a new instance of the ObjectSecurity`1 class.</summary>
1603       <param name="isContainer">
1604         <see langword="true" /> if the new <see cref="T:System.Security.AccessControl.ObjectSecurity`1" /> object is a container object.</param>
1605       <param name="resourceType">The type of resource.</param>
1606       <param name="name">The name of the securable object with which the new <see cref="T:System.Security.AccessControl.ObjectSecurity`1" /> object is associated.</param>
1607       <param name="includeSections">The sections to include.</param>
1608       <param name="exceptionFromErrorCode">A delegate implemented by integrators that provides custom exceptions.</param>
1609       <param name="exceptionContext">An object that contains contextual information about the source or destination of the exception.</param>
1610     </member>
1611     <member name="M:System.Security.AccessControl.ObjectSecurity`1.AccessRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)">
1612       <summary>Initializes a new instance of the ObjectAccessRule class that represents a new access control rule for the associated security object.</summary>
1613       <param name="identityReference">Represents a user account.</param>
1614       <param name="accessMask">The access type.</param>
1615       <param name="isInherited">
1616         <see langword="true" /> if the access rule is inherited; otherwise, <see langword="false" />.</param>
1617       <param name="inheritanceFlags">Specifies how to propagate access masks to child objects.</param>
1618       <param name="propagationFlags">Specifies how to propagate Access Control Entries (ACEs) to child objects.</param>
1619       <param name="type">Specifies whether access is allowed or denied.</param>
1620       <returns>Represents a new access control rule for the specified user, with the specified access rights, access control, and flags.</returns>
1621     </member>
1622     <member name="M:System.Security.AccessControl.ObjectSecurity`1.AddAccessRule(System.Security.AccessControl.AccessRule{`0})">
1623       <summary>Adds the specified access rule to the Discretionary Access Control List (DACL) associated with this ObjectSecurity`1 object.</summary>
1624       <param name="rule">The rule to add.</param>
1625     </member>
1626     <member name="M:System.Security.AccessControl.ObjectSecurity`1.AddAuditRule(System.Security.AccessControl.AuditRule{`0})">
1627       <summary>Adds the specified audit rule to the System Access Control List (SACL) associated with this ObjectSecurity`1 object.</summary>
1628       <param name="rule">The audit rule to add.</param>
1629     </member>
1630     <member name="M:System.Security.AccessControl.ObjectSecurity`1.AuditRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)">
1631       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.AuditRule" /> class representing the specified audit rule for the specified user.</summary>
1632       <param name="identityReference">Represents a user account.</param>
1633       <param name="accessMask">An integer that specifies an access type.</param>
1634       <param name="isInherited">
1635         <see langword="true" /> if the access rule is inherited; otherwise, <see langword="false" />.</param>
1636       <param name="inheritanceFlags">Specifies how to propagate access masks to child objects.</param>
1637       <param name="propagationFlags">Specifies how to propagate Access Control Entries (ACEs) to child objects.</param>
1638       <param name="flags">Describes the type of auditing to perform.</param>
1639       <returns>The specified audit rule for the specified user.</returns>
1640     </member>
1641     <member name="M:System.Security.AccessControl.ObjectSecurity`1.Persist(System.Runtime.InteropServices.SafeHandle)">
1642       <summary>Saves the security descriptor associated with this ObjectSecurity`1 object to permanent storage, using the specified handle.</summary>
1643       <param name="handle">The handle of the securable object with which this ObjectSecurity`1 object is associated.</param>
1644     </member>
1645     <member name="M:System.Security.AccessControl.ObjectSecurity`1.Persist(System.String)">
1646       <summary>Saves the security descriptor associated with this ObjectSecurity`1 object to permanent storage, using the specified name.</summary>
1647       <param name="name">The name of the securable object with which this ObjectSecurity`1 object is associated.</param>
1648     </member>
1649     <member name="M:System.Security.AccessControl.ObjectSecurity`1.RemoveAccessRule(System.Security.AccessControl.AccessRule{`0})">
1650       <summary>Removes access rules that contain the same security identifier and access mask as the specified access rule from the Discretionary Access Control List (DACL) associated with this ObjectSecurity`1 object.</summary>
1651       <param name="rule">The rule to remove.</param>
1652       <returns>
1653         <see langword="true" /> if the access rule was successfully removed; otherwise, <see langword="false" />.</returns>
1654     </member>
1655     <member name="M:System.Security.AccessControl.ObjectSecurity`1.RemoveAccessRuleAll(System.Security.AccessControl.AccessRule{`0})">
1656       <summary>Removes all access rules that have the same security identifier as the specified access rule from the Discretionary Access Control List (DACL) associated with this ObjectSecurity`1 object.</summary>
1657       <param name="rule">The access rule to remove.</param>
1658     </member>
1659     <member name="M:System.Security.AccessControl.ObjectSecurity`1.RemoveAccessRuleSpecific(System.Security.AccessControl.AccessRule{`0})">
1660       <summary>Removes all access rules that exactly match the specified access rule from the Discretionary Access Control List (DACL) associated with this ObjectSecurity`1 object.</summary>
1661       <param name="rule">The access rule to remove.</param>
1662     </member>
1663     <member name="M:System.Security.AccessControl.ObjectSecurity`1.RemoveAuditRule(System.Security.AccessControl.AuditRule{`0})">
1664       <summary>Removes audit rules that contain the same security identifier and access mask as the specified audit rule from the System Access Control List (SACL) associated with this ObjectSecurity`1 object.</summary>
1665       <param name="rule">The audit rule to remove.</param>
1666       <returns>
1667         <see langword="true" /> if the object was removed; otherwise, <see langword="false" />.</returns>
1668     </member>
1669     <member name="M:System.Security.AccessControl.ObjectSecurity`1.RemoveAuditRuleAll(System.Security.AccessControl.AuditRule{`0})">
1670       <summary>Removes all audit rules that have the same security identifier as the specified audit rule from the System Access Control List (SACL) associated with this ObjectSecurity`1 object.</summary>
1671       <param name="rule">The audit rule to remove.</param>
1672     </member>
1673     <member name="M:System.Security.AccessControl.ObjectSecurity`1.RemoveAuditRuleSpecific(System.Security.AccessControl.AuditRule{`0})">
1674       <summary>Removes all audit rules that exactly match the specified audit rule from the System Access Control List (SACL) associated with this ObjectSecurity`1 object.</summary>
1675       <param name="rule">The audit rule to remove.</param>
1676     </member>
1677     <member name="M:System.Security.AccessControl.ObjectSecurity`1.ResetAccessRule(System.Security.AccessControl.AccessRule{`0})">
1678       <summary>Removes all access rules in the Discretionary Access Control List (DACL) associated with this ObjectSecurity`1 object and then adds the specified access rule.</summary>
1679       <param name="rule">The access rule to reset.</param>
1680     </member>
1681     <member name="M:System.Security.AccessControl.ObjectSecurity`1.SetAccessRule(System.Security.AccessControl.AccessRule{`0})">
1682       <summary>Removes all access rules that contain the same security identifier and qualifier as the specified access rule in the Discretionary Access Control List (DACL) associated with this ObjectSecurity`1 object and then adds the specified access rule.</summary>
1683       <param name="rule">The access rule to set.</param>
1684     </member>
1685     <member name="M:System.Security.AccessControl.ObjectSecurity`1.SetAuditRule(System.Security.AccessControl.AuditRule{`0})">
1686       <summary>Removes all audit rules that contain the same security identifier and qualifier as the specified audit rule in the System Access Control List (SACL) associated with this ObjectSecurity`1 object and then adds the specified audit rule.</summary>
1687       <param name="rule">The audit rule to set.</param>
1688     </member>
1689     <member name="P:System.Security.AccessControl.ObjectSecurity`1.AccessRightType">
1690       <summary>Gets the Type of the securable object associated with this ObjectSecurity`1 object.</summary>
1691       <returns>The type of the securable object associated with the current instance.</returns>
1692     </member>
1693     <member name="P:System.Security.AccessControl.ObjectSecurity`1.AccessRuleType">
1694       <summary>Gets the Type of the object associated with the access rules of this ObjectSecurity`1 object.</summary>
1695       <returns>The Type of the object associated with the access rules of the current instance.</returns>
1696     </member>
1697     <member name="P:System.Security.AccessControl.ObjectSecurity`1.AuditRuleType">
1698       <summary>Gets the Type object associated with the audit rules of this ObjectSecurity`1 object.</summary>
1699       <returns>The Type object associated with the audit rules of the current instance.</returns>
1700     </member>
1701     <member name="T:System.Security.AccessControl.PrivilegeNotHeldException">
1702       <summary>The exception that is thrown when a method in the <see cref="N:System.Security.AccessControl" /> namespace attempts to enable a privilege that it does not have.</summary>
1703     </member>
1704     <member name="M:System.Security.AccessControl.PrivilegeNotHeldException.#ctor">
1705       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.PrivilegeNotHeldException" /> class.</summary>
1706     </member>
1707     <member name="M:System.Security.AccessControl.PrivilegeNotHeldException.#ctor(System.String)">
1708       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.PrivilegeNotHeldException" /> class by using the specified privilege.</summary>
1709       <param name="privilege">The privilege that is not enabled.</param>
1710     </member>
1711     <member name="M:System.Security.AccessControl.PrivilegeNotHeldException.#ctor(System.String,System.Exception)">
1712       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.PrivilegeNotHeldException" /> class by using the specified exception.</summary>
1713       <param name="privilege">The privilege that is not enabled.</param>
1714       <param name="inner">The exception that is the cause of the current exception. If the <c>innerException</c> parameter is not a null reference (<see langword="Nothing" /> in Visual Basic), the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
1715     </member>
1716     <member name="M:System.Security.AccessControl.PrivilegeNotHeldException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1717       <summary>Sets the <paramref name="info" /> parameter with information about the exception.</summary>
1718       <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
1719       <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
1720     </member>
1721     <member name="P:System.Security.AccessControl.PrivilegeNotHeldException.PrivilegeName">
1722       <summary>Gets the name of the privilege that is not enabled.</summary>
1723       <returns>The name of the privilege that the method failed to enable.</returns>
1724     </member>
1725     <member name="T:System.Security.AccessControl.PropagationFlags">
1726       <summary>Specifies how Access Control Entries (ACEs) are propagated to child objects.  These flags are significant only if inheritance flags are present.</summary>
1727     </member>
1728     <member name="F:System.Security.AccessControl.PropagationFlags.InheritOnly">
1729       <summary>Specifies that the ACE is propagated only to child objects. This includes both container and leaf child objects.</summary>
1730     </member>
1731     <member name="F:System.Security.AccessControl.PropagationFlags.None">
1732       <summary>Specifies that no inheritance flags are set.</summary>
1733     </member>
1734     <member name="F:System.Security.AccessControl.PropagationFlags.NoPropagateInherit">
1735       <summary>Specifies that the ACE is not propagated to child objects.</summary>
1736     </member>
1737     <member name="T:System.Security.AccessControl.QualifiedAce">
1738       <summary>Represents an Access Control Entry (ACE) that contains a qualifier. The qualifier, represented by an <see cref="T:System.Security.AccessControl.AceQualifier" /> object, specifies whether the ACE allows access, denies access, causes system audits, or causes system alarms. The <see cref="T:System.Security.AccessControl.QualifiedAce" /> class is the abstract base class for the <see cref="T:System.Security.AccessControl.CommonAce" /> and <see cref="T:System.Security.AccessControl.ObjectAce" /> classes.</summary>
1739     </member>
1740     <member name="M:System.Security.AccessControl.QualifiedAce.GetOpaque">
1741       <summary>Returns the opaque callback data associated with this <see cref="T:System.Security.AccessControl.QualifiedAce" /> object.</summary>
1742       <returns>An array of byte values that represents the opaque callback data associated with this <see cref="T:System.Security.AccessControl.QualifiedAce" /> object.</returns>
1743     </member>
1744     <member name="M:System.Security.AccessControl.QualifiedAce.SetOpaque(System.Byte[])">
1745       <summary>Sets the opaque callback data associated with this <see cref="T:System.Security.AccessControl.QualifiedAce" /> object.</summary>
1746       <param name="opaque">An array of byte values that represents the opaque callback data for this <see cref="T:System.Security.AccessControl.QualifiedAce" /> object.</param>
1747     </member>
1748     <member name="P:System.Security.AccessControl.QualifiedAce.AceQualifier">
1749       <summary>Gets a value that specifies whether the ACE allows access, denies access, causes system audits, or causes system alarms.</summary>
1750       <returns>A value that specifies whether the ACE allows access, denies access, causes system audits, or causes system alarms.</returns>
1751     </member>
1752     <member name="P:System.Security.AccessControl.QualifiedAce.IsCallback">
1753       <summary>Specifies whether this <see cref="T:System.Security.AccessControl.QualifiedAce" /> object contains callback data.</summary>
1754       <returns>
1755         <see langword="true" /> if this <see cref="T:System.Security.AccessControl.QualifiedAce" /> object contains callback data; otherwise, false.</returns>
1756     </member>
1757     <member name="P:System.Security.AccessControl.QualifiedAce.OpaqueLength">
1758       <summary>Gets the length of the opaque callback data associated with this <see cref="T:System.Security.AccessControl.QualifiedAce" /> object. This property is valid only for callback Access Control Entries (ACEs).</summary>
1759       <returns>The length of the opaque callback data.</returns>
1760     </member>
1761     <member name="T:System.Security.AccessControl.RawAcl">
1762       <summary>Represents an Access Control List (ACL).</summary>
1763     </member>
1764     <member name="M:System.Security.AccessControl.RawAcl.#ctor(System.Byte,System.Int32)">
1765       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.RawAcl" /> class with the specified revision level.</summary>
1766       <param name="revision">The revision level of the new Access Control List (ACL).</param>
1767       <param name="capacity">The number of Access Control Entries (ACEs) this <see cref="T:System.Security.AccessControl.RawAcl" /> object can contain. This number is to be used only as a hint.</param>
1768     </member>
1769     <member name="M:System.Security.AccessControl.RawAcl.#ctor(System.Byte[],System.Int32)">
1770       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.RawAcl" /> class from the specified binary form.</summary>
1771       <param name="binaryForm">An array of byte values that represent an Access Control List (ACL).</param>
1772       <param name="offset">The offset in the <paramref name="binaryForm" /> parameter at which to begin unmarshaling data.</param>
1773     </member>
1774     <member name="M:System.Security.AccessControl.RawAcl.GetBinaryForm(System.Byte[],System.Int32)">
1775       <summary>Marshals the contents of the <see cref="T:System.Security.AccessControl.RawAcl" /> object into the specified byte array beginning at the specified offset.</summary>
1776       <param name="binaryForm">The byte array into which the contents of the <see cref="T:System.Security.AccessControl.RawAcl" /> is marshaled.</param>
1777       <param name="offset">The offset at which to start marshaling.</param>
1778       <exception cref="T:System.ArgumentOutOfRangeException">
1779         <paramref name="offset" /> is negative or too high to allow the entire <see cref="T:System.Security.AccessControl.RawAcl" /> to be copied into <paramref name="array" />.</exception>
1780     </member>
1781     <member name="M:System.Security.AccessControl.RawAcl.InsertAce(System.Int32,System.Security.AccessControl.GenericAce)">
1782       <summary>Inserts the specified Access Control Entry (ACE) at the specified index.</summary>
1783       <param name="index">The position at which to add the new ACE. Specify the value of the <see cref="P:System.Security.AccessControl.RawAcl.Count" /> property to insert an ACE at the end of the <see cref="T:System.Security.AccessControl.RawAcl" /> object.</param>
1784       <param name="ace">The ACE to insert.</param>
1785       <exception cref="T:System.ArgumentOutOfRangeException">
1786         <paramref name="offset" /> is negative or too high to allow the entire <see cref="T:System.Security.AccessControl.GenericAcl" /> to be copied into <paramref name="array" />.</exception>
1787     </member>
1788     <member name="M:System.Security.AccessControl.RawAcl.RemoveAce(System.Int32)">
1789       <summary>Removes the Access Control Entry (ACE) at the specified location.</summary>
1790       <param name="index">The zero-based index of the ACE to remove.</param>
1791       <exception cref="T:System.ArgumentOutOfRangeException">The value of the <paramref name="index" /> parameter is higher than the value of the <see cref="P:System.Security.AccessControl.RawAcl.Count" /> property minus one or is negative.</exception>
1792     </member>
1793     <member name="P:System.Security.AccessControl.RawAcl.BinaryLength">
1794       <summary>Gets the length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.RawAcl" /> object. This length should be used before marshaling the ACL into a binary array with the <see cref="M:System.Security.AccessControl.RawAcl.GetBinaryForm(System.Byte[],System.Int32)" /> method.</summary>
1795       <returns>The length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.RawAcl" /> object.</returns>
1796     </member>
1797     <member name="P:System.Security.AccessControl.RawAcl.Count">
1798       <summary>Gets the number of access control entries (ACEs) in the current <see cref="T:System.Security.AccessControl.RawAcl" /> object.</summary>
1799       <returns>The number of ACEs in the current <see cref="T:System.Security.AccessControl.RawAcl" /> object.</returns>
1800     </member>
1801     <member name="P:System.Security.AccessControl.RawAcl.Item(System.Int32)">
1802       <summary>Gets or sets the Access Control Entry (ACE) at the specified index.</summary>
1803       <param name="index">The zero-based index of the ACE to get or set.</param>
1804       <returns>The ACE at the specified index.</returns>
1805     </member>
1806     <member name="P:System.Security.AccessControl.RawAcl.Revision">
1807       <summary>Gets the revision level of the <see cref="T:System.Security.AccessControl.RawAcl" />.</summary>
1808       <returns>A byte value that specifies the revision level of the <see cref="T:System.Security.AccessControl.RawAcl" />.</returns>
1809     </member>
1810     <member name="T:System.Security.AccessControl.RawSecurityDescriptor">
1811       <summary>Represents a security descriptor. A security descriptor includes an owner, a primary group, a Discretionary Access Control List (DACL), and a System Access Control List (SACL).</summary>
1812     </member>
1813     <member name="M:System.Security.AccessControl.RawSecurityDescriptor.#ctor(System.Byte[],System.Int32)">
1814       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> class from the specified array of byte values.</summary>
1815       <param name="binaryForm">The array of byte values from which to create the new <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object.</param>
1816       <param name="offset">The offset in the  <paramref name="binaryForm" /> array at which to begin copying.</param>
1817     </member>
1818     <member name="M:System.Security.AccessControl.RawSecurityDescriptor.#ctor(System.Security.AccessControl.ControlFlags,System.Security.Principal.SecurityIdentifier,System.Security.Principal.SecurityIdentifier,System.Security.AccessControl.RawAcl,System.Security.AccessControl.RawAcl)">
1819       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> class with the specified values.</summary>
1820       <param name="flags">Flags that specify behavior of the new <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object.</param>
1821       <param name="owner">The owner for the new <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object.</param>
1822       <param name="group">The primary group for the new <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object.</param>
1823       <param name="systemAcl">The System Access Control List (SACL) for the new <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object.</param>
1824       <param name="discretionaryAcl">The Discretionary Access Control List (DACL) for the new <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object.</param>
1825     </member>
1826     <member name="M:System.Security.AccessControl.RawSecurityDescriptor.#ctor(System.String)">
1827       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> class from the specified Security Descriptor Definition Language (SDDL) string.</summary>
1828       <param name="sddlForm">The SDDL string from which to create the new <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object.</param>
1829       <exception cref="T:System.ArgumentException">The SDDL form of a security descriptor object is invalid.</exception>
1830     </member>
1831     <member name="M:System.Security.AccessControl.RawSecurityDescriptor.SetFlags(System.Security.AccessControl.ControlFlags)">
1832       <summary>Sets the <see cref="P:System.Security.AccessControl.RawSecurityDescriptor.ControlFlags" /> property of this <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object to the specified value.</summary>
1833       <param name="flags">One or more values of the <see cref="T:System.Security.AccessControl.ControlFlags" /> enumeration combined with a logical OR operation.</param>
1834     </member>
1835     <member name="P:System.Security.AccessControl.RawSecurityDescriptor.ControlFlags">
1836       <summary>Gets values that specify behavior of the <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object.</summary>
1837       <returns>One or more values of the <see cref="T:System.Security.AccessControl.ControlFlags" /> enumeration combined with a logical OR operation.</returns>
1838     </member>
1839     <member name="P:System.Security.AccessControl.RawSecurityDescriptor.DiscretionaryAcl">
1840       <summary>Gets or sets the Discretionary Access Control List (DACL) for this <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object. The DACL contains access rules.</summary>
1841       <returns>The DACL for this <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object.</returns>
1842     </member>
1843     <member name="P:System.Security.AccessControl.RawSecurityDescriptor.Group">
1844       <summary>Gets or sets the primary group for this <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object.</summary>
1845       <returns>The primary group for this <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object.</returns>
1846     </member>
1847     <member name="P:System.Security.AccessControl.RawSecurityDescriptor.Owner">
1848       <summary>Gets or sets the owner of the object associated with this <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object.</summary>
1849       <returns>The owner of the object associated with this <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object.</returns>
1850     </member>
1851     <member name="P:System.Security.AccessControl.RawSecurityDescriptor.ResourceManagerControl">
1852       <summary>Gets or sets a byte value that represents the resource manager control bits associated with this <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object.</summary>
1853       <returns>A byte value that represents the resource manager control bits associated with this <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object.</returns>
1854     </member>
1855     <member name="P:System.Security.AccessControl.RawSecurityDescriptor.SystemAcl">
1856       <summary>Gets or sets the System Access Control List (SACL) for this <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object. The SACL contains audit rules.</summary>
1857       <returns>The SACL for this <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object.</returns>
1858     </member>
1859     <member name="T:System.Security.AccessControl.ResourceType">
1860       <summary>Specifies the defined native object types.</summary>
1861     </member>
1862     <member name="F:System.Security.AccessControl.ResourceType.DSObject">
1863       <summary>A directory service (DS) object or a property set or property of a directory service object.</summary>
1864     </member>
1865     <member name="F:System.Security.AccessControl.ResourceType.DSObjectAll">
1866       <summary>A directory service object and all of its property sets and properties.</summary>
1867     </member>
1868     <member name="F:System.Security.AccessControl.ResourceType.FileObject">
1869       <summary>A file or directory.</summary>
1870     </member>
1871     <member name="F:System.Security.AccessControl.ResourceType.KernelObject">
1872       <summary>A local kernel object.</summary>
1873     </member>
1874     <member name="F:System.Security.AccessControl.ResourceType.LMShare">
1875       <summary>A network share.</summary>
1876     </member>
1877     <member name="F:System.Security.AccessControl.ResourceType.Printer">
1878       <summary>A printer.</summary>
1879     </member>
1880     <member name="F:System.Security.AccessControl.ResourceType.ProviderDefined">
1881       <summary>An object defined by a provider.</summary>
1882     </member>
1883     <member name="F:System.Security.AccessControl.ResourceType.RegistryKey">
1884       <summary>A registry key.</summary>
1885     </member>
1886     <member name="F:System.Security.AccessControl.ResourceType.RegistryWow6432Key">
1887       <summary>An object for a registry entry under WOW64.</summary>
1888     </member>
1889     <member name="F:System.Security.AccessControl.ResourceType.Service">
1890       <summary>A Windows service.</summary>
1891     </member>
1892     <member name="F:System.Security.AccessControl.ResourceType.Unknown">
1893       <summary>An unknown object type.</summary>
1894     </member>
1895     <member name="F:System.Security.AccessControl.ResourceType.WindowObject">
1896       <summary>A window station or desktop object on the local computer.</summary>
1897     </member>
1898     <member name="F:System.Security.AccessControl.ResourceType.WmiGuidObject">
1899       <summary>A Windows Management Instrumentation (WMI) object.</summary>
1900     </member>
1901     <member name="T:System.Security.AccessControl.SecurityInfos">
1902       <summary>Specifies the section of a security descriptor to be queried or set.</summary>
1903     </member>
1904     <member name="F:System.Security.AccessControl.SecurityInfos.DiscretionaryAcl">
1905       <summary>Specifies the discretionary access control list (DACL).</summary>
1906     </member>
1907     <member name="F:System.Security.AccessControl.SecurityInfos.Group">
1908       <summary>Specifies the primary group identifier.</summary>
1909     </member>
1910     <member name="F:System.Security.AccessControl.SecurityInfos.Owner">
1911       <summary>Specifies the owner identifier.</summary>
1912     </member>
1913     <member name="F:System.Security.AccessControl.SecurityInfos.SystemAcl">
1914       <summary>Specifies the system access control list (SACL).</summary>
1915     </member>
1916     <member name="T:System.Security.AccessControl.SystemAcl">
1917       <summary>Represents a System Access Control List (SACL).</summary>
1918     </member>
1919     <member name="M:System.Security.AccessControl.SystemAcl.#ctor(System.Boolean,System.Boolean,System.Byte,System.Int32)">
1920       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.SystemAcl" /> class with the specified values.</summary>
1921       <param name="isContainer">
1922         <see langword="true" /> if the new <see cref="T:System.Security.AccessControl.SystemAcl" /> object is a container.</param>
1923       <param name="isDS">
1924         <see langword="true" /> if the new <see cref="T:System.Security.AccessControl.SystemAcl" /> object is a directory object Access Control List (ACL).</param>
1925       <param name="revision">The revision level of the new <see cref="T:System.Security.AccessControl.SystemAcl" /> object.</param>
1926       <param name="capacity">The number of Access Control Entries (ACEs) this <see cref="T:System.Security.AccessControl.SystemAcl" /> object can contain. This number is to be used only as a hint.</param>
1927     </member>
1928     <member name="M:System.Security.AccessControl.SystemAcl.#ctor(System.Boolean,System.Boolean,System.Int32)">
1929       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.SystemAcl" /> class with the specified values.</summary>
1930       <param name="isContainer">
1931         <see langword="true" /> if the new <see cref="T:System.Security.AccessControl.SystemAcl" /> object is a container.</param>
1932       <param name="isDS">
1933         <see langword="true" /> if the new <see cref="T:System.Security.AccessControl.SystemAcl" /> object is a directory object Access Control List (ACL).</param>
1934       <param name="capacity">The number of Access Control Entries (ACEs) this <see cref="T:System.Security.AccessControl.SystemAcl" /> object can contain. This number is to be used only as a hint.</param>
1935     </member>
1936     <member name="M:System.Security.AccessControl.SystemAcl.#ctor(System.Boolean,System.Boolean,System.Security.AccessControl.RawAcl)">
1937       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.SystemAcl" /> class with the specified values from the specified <see cref="T:System.Security.AccessControl.RawAcl" /> object.</summary>
1938       <param name="isContainer">
1939         <see langword="true" /> if the new <see cref="T:System.Security.AccessControl.SystemAcl" /> object is a container.</param>
1940       <param name="isDS">
1941         <see langword="true" /> if the new <see cref="T:System.Security.AccessControl.SystemAcl" /> object is a directory object Access Control List (ACL).</param>
1942       <param name="rawAcl">The underlying <see cref="T:System.Security.AccessControl.RawAcl" /> object for the new <see cref="T:System.Security.AccessControl.SystemAcl" /> object. Specify <see langword="null" /> to create an empty ACL.</param>
1943     </member>
1944     <member name="M:System.Security.AccessControl.SystemAcl.AddAudit(System.Security.AccessControl.AuditFlags,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags)">
1945       <summary>Adds an audit rule to the current <see cref="T:System.Security.AccessControl.SystemAcl" /> object.</summary>
1946       <param name="auditFlags">The type of audit rule to add.</param>
1947       <param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to add an audit rule.</param>
1948       <param name="accessMask">The access mask for the new audit rule.</param>
1949       <param name="inheritanceFlags">Flags that specify the inheritance properties of the new audit rule.</param>
1950       <param name="propagationFlags">Flags that specify the inheritance propagation properties for the new audit rule.</param>
1951     </member>
1952     <member name="M:System.Security.AccessControl.SystemAcl.AddAudit(System.Security.AccessControl.AuditFlags,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.ObjectAceFlags,System.Guid,System.Guid)">
1953       <summary>Adds an audit rule with the specified settings to the current <see cref="T:System.Security.AccessControl.SystemAcl" /> object. Use this method for directory object Access Control Lists (ACLs) when specifying the object type or the inherited object type for the new audit rule.</summary>
1954       <param name="auditFlags">The type of audit rule to add.</param>
1955       <param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to add an audit rule.</param>
1956       <param name="accessMask">The access mask for the new audit rule.</param>
1957       <param name="inheritanceFlags">Flags that specify the inheritance properties of the new audit rule.</param>
1958       <param name="propagationFlags">Flags that specify the inheritance propagation properties for the new audit rule.</param>
1959       <param name="objectFlags">Flags that specify if the <paramref name="objectType" /> and <paramref name="inheritedObjectType" /> parameters contain non-<see langword="null" /> values.</param>
1960       <param name="objectType">The identity of the class of objects to which the new audit rule applies.</param>
1961       <param name="inheritedObjectType">The identity of the class of child objects which can inherit the new audit rule.</param>
1962     </member>
1963     <member name="M:System.Security.AccessControl.SystemAcl.AddAudit(System.Security.Principal.SecurityIdentifier,System.Security.AccessControl.ObjectAuditRule)">
1964       <summary>Adds an audit rule to the current <see cref="T:System.Security.AccessControl.SystemAcl" /> object.</summary>
1965       <param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to add an audit rule.</param>
1966       <param name="rule">The <see cref="T:System.Security.AccessControl.ObjectAuditRule" /> for the new audit rule.</param>
1967     </member>
1968     <member name="M:System.Security.AccessControl.SystemAcl.RemoveAudit(System.Security.AccessControl.AuditFlags,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags)">
1969       <summary>Removes the specified audit rule from the current <see cref="T:System.Security.AccessControl.SystemAcl" /> object.</summary>
1970       <param name="auditFlags">The type of audit rule to remove.</param>
1971       <param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to remove an audit rule.</param>
1972       <param name="accessMask">The access mask for the rule to be removed.</param>
1973       <param name="inheritanceFlags">Flags that specify the inheritance properties of the rule to be removed.</param>
1974       <param name="propagationFlags">Flags that specify the inheritance propagation properties for the rule to be removed.</param>
1975       <returns>
1976         <see langword="true" /> if this method successfully removes the specified audit rule; otherwise, <see langword="false" />.</returns>
1977     </member>
1978     <member name="M:System.Security.AccessControl.SystemAcl.RemoveAudit(System.Security.AccessControl.AuditFlags,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.ObjectAceFlags,System.Guid,System.Guid)">
1979       <summary>Removes the specified audit rule from the current <see cref="T:System.Security.AccessControl.SystemAcl" /> object. Use this method for directory object Access Control Lists (ACLs) when specifying the object type or the inherited object type.</summary>
1980       <param name="auditFlags">The type of audit rule to remove.</param>
1981       <param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to remove an audit rule.</param>
1982       <param name="accessMask">The access mask for the rule to be removed.</param>
1983       <param name="inheritanceFlags">Flags that specify the inheritance properties of the rule to be removed.</param>
1984       <param name="propagationFlags">Flags that specify the inheritance propagation properties for the rule to be removed.</param>
1985       <param name="objectFlags">Flags that specify if the <paramref name="objectType" /> and <paramref name="inheritedObjectType" /> parameters contain non-<see langword="null" /> values.</param>
1986       <param name="objectType">The identity of the class of objects to which the removed audit control rule applies.</param>
1987       <param name="inheritedObjectType">The identity of the class of child objects which can inherit the removed audit rule.</param>
1988       <returns>
1989         <see langword="true" /> if this method successfully removes the specified audit rule; otherwise, <see langword="false" />.</returns>
1990     </member>
1991     <member name="M:System.Security.AccessControl.SystemAcl.RemoveAudit(System.Security.Principal.SecurityIdentifier,System.Security.AccessControl.ObjectAuditRule)">
1992       <summary>Removes the specified audit rule from the current <see cref="T:System.Security.AccessControl.SystemAcl" /> object.</summary>
1993       <param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to remove an audit rule.</param>
1994       <param name="rule">The <see cref="T:System.Security.AccessControl.ObjectAuditRule" /> for which to remove an audit rule.</param>
1995       <returns>
1996         <see langword="true" /> if this method successfully removes the specified audit rule; otherwise, <see langword="false" />.</returns>
1997     </member>
1998     <member name="M:System.Security.AccessControl.SystemAcl.RemoveAuditSpecific(System.Security.AccessControl.AuditFlags,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags)">
1999       <summary>Removes the specified audit rule from the current <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object.</summary>
2000       <param name="auditFlags">The type of audit rule to remove.</param>
2001       <param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to remove an audit rule.</param>
2002       <param name="accessMask">The access mask for the rule to be removed.</param>
2003       <param name="inheritanceFlags">Flags that specify the inheritance properties of the rule to be removed.</param>
2004       <param name="propagationFlags">Flags that specify the inheritance propagation properties for the rule to be removed.</param>
2005     </member>
2006     <member name="M:System.Security.AccessControl.SystemAcl.RemoveAuditSpecific(System.Security.AccessControl.AuditFlags,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.ObjectAceFlags,System.Guid,System.Guid)">
2007       <summary>Removes the specified audit rule from the current <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object. Use this method for directory object Access Control Lists (ACLs) when specifying the object type or the inherited object type.</summary>
2008       <param name="auditFlags">The type of audit rule to remove.</param>
2009       <param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to remove an audit rule.</param>
2010       <param name="accessMask">The access mask for the rule to be removed.</param>
2011       <param name="inheritanceFlags">Flags that specify the inheritance properties of the rule to be removed.</param>
2012       <param name="propagationFlags">Flags that specify the inheritance propagation properties for the rule to be removed.</param>
2013       <param name="objectFlags">Flags that specify if the <paramref name="objectType" /> and <paramref name="inheritedObjectType" /> parameters contain non-<see langword="null" /> values.</param>
2014       <param name="objectType">The identity of the class of objects to which the removed audit control rule applies.</param>
2015       <param name="inheritedObjectType">The identity of the class of child objects which can inherit the removed audit rule.</param>
2016     </member>
2017     <member name="M:System.Security.AccessControl.SystemAcl.RemoveAuditSpecific(System.Security.Principal.SecurityIdentifier,System.Security.AccessControl.ObjectAuditRule)">
2018       <summary>Removes the specified audit rule from the current <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object.</summary>
2019       <param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to remove an audit rule.</param>
2020       <param name="rule">The <see cref="T:System.Security.AccessControl.ObjectAuditRule" /> for the rule to be removed.</param>
2021     </member>
2022     <member name="M:System.Security.AccessControl.SystemAcl.SetAudit(System.Security.AccessControl.AuditFlags,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags)">
2023       <summary>Sets the specified audit rule for the specified <see cref="T:System.Security.Principal.SecurityIdentifier" /> object.</summary>
2024       <param name="auditFlags">The audit condition to set.</param>
2025       <param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to set an audit rule.</param>
2026       <param name="accessMask">The access mask for the new audit rule.</param>
2027       <param name="inheritanceFlags">Flags that specify the inheritance properties of the new audit rule.</param>
2028       <param name="propagationFlags">Flags that specify the inheritance propagation properties for the new audit rule.</param>
2029     </member>
2030     <member name="M:System.Security.AccessControl.SystemAcl.SetAudit(System.Security.AccessControl.AuditFlags,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.ObjectAceFlags,System.Guid,System.Guid)">
2031       <summary>Sets the specified audit rule for the specified <see cref="T:System.Security.Principal.SecurityIdentifier" /> object. Use this method for directory object Access Control Lists (ACLs) when specifying the object type or the inherited object type.</summary>
2032       <param name="auditFlags">The audit condition to set.</param>
2033       <param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to set an audit rule.</param>
2034       <param name="accessMask">The access mask for the new audit rule.</param>
2035       <param name="inheritanceFlags">Flags that specify the inheritance properties of the new audit rule.</param>
2036       <param name="propagationFlags">Flags that specify the inheritance propagation properties for the new audit rule.</param>
2037       <param name="objectFlags">Flags that specify if the <paramref name="objectType" /> and <paramref name="inheritedObjectType" /> parameters contain non-<see langword="null" /> values.</param>
2038       <param name="objectType">The identity of the class of objects to which the new audit rule applies.</param>
2039       <param name="inheritedObjectType">The identity of the class of child objects which can inherit the new audit rule.</param>
2040     </member>
2041     <member name="M:System.Security.AccessControl.SystemAcl.SetAudit(System.Security.Principal.SecurityIdentifier,System.Security.AccessControl.ObjectAuditRule)">
2042       <summary>Sets the specified audit rule for the specified <see cref="T:System.Security.Principal.SecurityIdentifier" /> object.</summary>
2043       <param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to set an audit rule.</param>
2044       <param name="rule">The <see cref="T:System.Security.AccessControl.ObjectAuditRule" /> for which to set an audit rule.</param>
2045     </member>
2046     <member name="T:System.Security.Policy.Evidence">
2047       <summary>Defines the set of information that constitutes input to security policy decisions. This class cannot be inherited.</summary>
2048     </member>
2049     <member name="M:System.Security.Policy.Evidence.#ctor">
2050       <summary>Initializes a new empty instance of the <see cref="T:System.Security.Policy.Evidence" /> class.</summary>
2051     </member>
2052     <member name="M:System.Security.Policy.Evidence.#ctor(System.Object[],System.Object[])">
2053       <summary>Initializes a new instance of the <see cref="T:System.Security.Policy.Evidence" /> class from multiple sets of host and assembly evidence.</summary>
2054       <param name="hostEvidence">The host evidence from which to create the new instance.</param>
2055       <param name="assemblyEvidence">The assembly evidence from which to create the new instance.</param>
2056     </member>
2057     <member name="M:System.Security.Policy.Evidence.#ctor(System.Security.Policy.Evidence)">
2058       <summary>Initializes a new instance of the <see cref="T:System.Security.Policy.Evidence" /> class from a shallow copy of an existing one.</summary>
2059       <param name="evidence">The <see cref="T:System.Security.Policy.Evidence" /> instance from which to create the new instance. This instance is not deep-copied.</param>
2060       <exception cref="T:System.ArgumentException">The <paramref name="evidence" /> parameter is not a valid instance of <see cref="T:System.Security.Policy.Evidence" />.</exception>
2061     </member>
2062     <member name="M:System.Security.Policy.Evidence.#ctor(System.Security.Policy.EvidenceBase[],System.Security.Policy.EvidenceBase[])">
2063       <summary>Initializes a new instance of the <see cref="T:System.Security.Policy.Evidence" /> class from multiple sets of host and assembly evidence.</summary>
2064       <param name="hostEvidence">The host evidence from which to create the new instance.</param>
2065       <param name="assemblyEvidence">The assembly evidence from which to create the new instance.</param>
2066     </member>
2067     <member name="M:System.Security.Policy.Evidence.AddAssembly(System.Object)">
2068       <summary>Adds the specified assembly evidence to the evidence set.</summary>
2069       <param name="id">Any evidence object.</param>
2070       <exception cref="T:System.ArgumentNullException">
2071         <paramref name="id" /> is null.</exception>
2072       <exception cref="T:System.ArgumentException">
2073         <paramref name="id" /> is not serializable.</exception>
2074     </member>
2075     <member name="M:System.Security.Policy.Evidence.AddAssemblyEvidence``1(``0)">
2076       <summary>Adds an evidence object of the specified type to the assembly-supplied evidence list.</summary>
2077       <param name="evidence">The assembly evidence to add.</param>
2078       <typeparam name="T">The type of the object in <paramref name="evidence" />.</typeparam>
2079       <exception cref="T:System.ArgumentNullException">
2080         <paramref name="evidence" /> is <see langword="null" />.</exception>
2081       <exception cref="T:System.InvalidOperationException">Evidence of type <paramref name="T" /> is already in the list.</exception>
2082       <exception cref="T:System.ArgumentException">
2083         <paramref name="evidence" /> is not serializable.</exception>
2084     </member>
2085     <member name="M:System.Security.Policy.Evidence.AddHost(System.Object)">
2086       <summary>Adds the specified evidence supplied by the host to the evidence set.</summary>
2087       <param name="id">Any evidence object.</param>
2088       <exception cref="T:System.ArgumentNullException">
2089         <paramref name="id" /> is null.</exception>
2090       <exception cref="T:System.ArgumentException">
2091         <paramref name="id" /> is not serializable.</exception>
2092     </member>
2093     <member name="M:System.Security.Policy.Evidence.AddHostEvidence``1(``0)">
2094       <summary>Adds host evidence of the specified type to the host evidence collection.</summary>
2095       <param name="evidence">The host evidence to add.</param>
2096       <typeparam name="T">The type of the object in <paramref name="evidence" />.</typeparam>
2097       <exception cref="T:System.ArgumentNullException">
2098         <paramref name="evidence" /> is <see langword="null" />.</exception>
2099       <exception cref="T:System.InvalidOperationException">Evidence of type <paramref name="T" /> is already in the list.</exception>
2100     </member>
2101     <member name="M:System.Security.Policy.Evidence.Clear">
2102       <summary>Removes the host and assembly evidence from the evidence set.</summary>
2103     </member>
2104     <member name="M:System.Security.Policy.Evidence.Clone">
2105       <summary>Returns a duplicate copy of this evidence object.</summary>
2106       <returns>A duplicate copy of this evidence object.</returns>
2107     </member>
2108     <member name="M:System.Security.Policy.Evidence.CopyTo(System.Array,System.Int32)">
2109       <summary>Copies evidence objects to an <see cref="T:System.Array" />.</summary>
2110       <param name="array">The target array to which to copy evidence objects.</param>
2111       <param name="index">The zero-based position in the array to which to begin copying evidence objects.</param>
2112       <exception cref="T:System.ArgumentNullException">
2113         <paramref name="array" /> is null.</exception>
2114       <exception cref="T:System.ArgumentOutOfRangeException">
2115         <paramref name="index" /> is outside the range of the target array.</exception>
2116     </member>
2117     <member name="M:System.Security.Policy.Evidence.GetAssemblyEnumerator">
2118       <summary>Enumerates evidence provided by the assembly.</summary>
2119       <returns>An enumerator for evidence added by the <see cref="M:System.Security.Policy.Evidence.AddAssembly(System.Object)" /> method.</returns>
2120     </member>
2121     <member name="M:System.Security.Policy.Evidence.GetAssemblyEvidence``1">
2122       <summary>Gets assembly evidence of the specified type from the collection.</summary>
2123       <typeparam name="T">The type of the evidence to get.</typeparam>
2124       <returns>Evidence of type <paramref name="T" /> in the assembly evidence collection.</returns>
2125     </member>
2126     <member name="M:System.Security.Policy.Evidence.GetEnumerator">
2127       <summary>Enumerates all evidence in the set, both that provided by the host and that provided by the assembly.</summary>
2128       <returns>An enumerator for evidence added by both the <see cref="M:System.Security.Policy.Evidence.AddHost(System.Object)" /> method and the <see cref="M:System.Security.Policy.Evidence.AddAssembly(System.Object)" /> method.</returns>
2129     </member>
2130     <member name="M:System.Security.Policy.Evidence.GetHostEnumerator">
2131       <summary>Enumerates evidence supplied by the host.</summary>
2132       <returns>An enumerator for evidence added by the <see cref="M:System.Security.Policy.Evidence.AddHost(System.Object)" /> method.</returns>
2133     </member>
2134     <member name="M:System.Security.Policy.Evidence.GetHostEvidence``1">
2135       <summary>Gets host evidence of the specified type from the collection.</summary>
2136       <typeparam name="T">The type of the evidence to get.</typeparam>
2137       <returns>Evidence of type <paramref name="T" /> in the host evidence collection.</returns>
2138     </member>
2139     <member name="M:System.Security.Policy.Evidence.Merge(System.Security.Policy.Evidence)">
2140       <summary>Merges the specified evidence set into the current evidence set.</summary>
2141       <param name="evidence">The evidence set to be merged into the current evidence set.</param>
2142       <exception cref="T:System.ArgumentException">The <paramref name="evidence" /> parameter is not a valid instance of <see cref="T:System.Security.Policy.Evidence" />.</exception>
2143       <exception cref="T:System.Security.SecurityException">
2144         <see cref="P:System.Security.Policy.Evidence.Locked" /> is <see langword="true" />, the code that calls this method does not have <see cref="F:System.Security.Permissions.SecurityPermissionFlag.ControlEvidence" />, and the <paramref name="evidence" /> parameter has a host list that is not empty.</exception>
2145     </member>
2146     <member name="M:System.Security.Policy.Evidence.RemoveType(System.Type)">
2147       <summary>Removes the evidence for a given type from the host and assembly enumerations.</summary>
2148       <param name="t">The type of the evidence to be removed.</param>
2149       <exception cref="T:System.ArgumentNullException">
2150         <paramref name="t" /> is null.</exception>
2151     </member>
2152     <member name="P:System.Security.Policy.Evidence.Count">
2153       <summary>Gets the number of evidence objects in the evidence set.</summary>
2154       <returns>The number of evidence objects in the evidence set.</returns>
2155     </member>
2156     <member name="P:System.Security.Policy.Evidence.IsReadOnly">
2157       <summary>Gets a value indicating whether the evidence set is read-only.</summary>
2158       <returns>Always <see langword="false" />, because read-only evidence sets are not supported.</returns>
2159     </member>
2160     <member name="P:System.Security.Policy.Evidence.IsSynchronized">
2161       <summary>Gets a value indicating whether the evidence set is thread-safe.</summary>
2162       <returns>Always <see langword="false" /> because thread-safe evidence sets are not supported.</returns>
2163     </member>
2164     <member name="P:System.Security.Policy.Evidence.Locked">
2165       <summary>Gets or sets a value indicating whether the evidence is locked.</summary>
2166       <returns>
2167         <see langword="true" /> if the evidence is locked; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
2168     </member>
2169     <member name="P:System.Security.Policy.Evidence.SyncRoot">
2170       <summary>Gets the synchronization root.</summary>
2171       <returns>Always <see langword="this" /> (<see langword="Me" /> in Visual Basic), because synchronization of evidence sets is not supported.</returns>
2172     </member>
2173     <member name="T:System.Security.Policy.EvidenceBase">
2174       <summary>Provides a base class from which all objects to be used as evidence must derive.</summary>
2175     </member>
2176     <member name="M:System.Security.Policy.EvidenceBase.#ctor">
2177       <summary>Initializes a new instance of the <see cref="T:System.Security.Policy.EvidenceBase" /> class.</summary>
2178       <exception cref="T:System.InvalidOperationException">An object to be used as evidence is not serializable.</exception>
2179     </member>
2180     <member name="M:System.Security.Policy.EvidenceBase.Clone">
2181       <summary>Creates a new object that is a complete copy of the current instance.</summary>
2182       <returns>A duplicate copy of this evidence object.</returns>
2183     </member>
2184   </members>
2185 </doc>