[NUI] Version Update (22237)
[platform/core/csapi/tizenfx.git] / pkg / Tizen.NET.API11 / build / tizen11.0 / ref / System.IO.Pipes.AccessControl.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <doc>
3   <assembly>
4     <name>System.IO.Pipes.AccessControl</name>
5   </assembly>
6   <members>
7     <member name="T:System.IO.Pipes.AnonymousPipeServerStreamAcl">
8       <summary>Provides security related APIs for the <see. cref="T:System.IO.Pipes.AnonymousPipeServerStream" /> class.</summary>
9     </member>
10     <member name="M:System.IO.Pipes.AnonymousPipeServerStreamAcl.Create(System.IO.Pipes.PipeDirection,System.IO.HandleInheritability,System.Int32,System.IO.Pipes.PipeSecurity)">
11       <summary>Creates a new instance of the <see cref="T:System.IO.Pipes.AnonymousPipeServerStream" /> class with the specified pipe direction, inheritability mode, buffer size, and pipe security.</summary>
12       <param name="direction">One of the enumeration values that determines the direction of the pipe. Anonymous pipes are unidirectional, so direction cannot be set to <see cref="F:System.IO.Pipes.PipeDirection.InOut" />.</param>
13       <param name="inheritability">One of the enumeration values that determines whether the underlying handle can be inherited by child processes.</param>
14       <param name="bufferSize">The size of the buffer. This value must be greater than or equal to 0.</param>
15       <param name="pipeSecurity">An object that determines the access control and audit security for the pipe.</param>
16       <exception cref="T:System.NotSupportedException">
17         <paramref name="direction" /> is <see cref="F:System.IO.Pipes.PipeDirection.InOut" />.</exception>
18       <exception cref="T:System.ArgumentOutOfRangeException">
19         <paramref name="inheritability" /> is not set to a valid <see cref="T:System.IO.HandleInheritability" /> enum value.
20
21  -or-  
22   
23 <paramref name="bufferSize" /> is less than 0.</exception>
24       <returns>A new anonymous pipe server stream instance.</returns>
25     </member>
26     <member name="T:System.IO.Pipes.NamedPipeServerStreamAcl">
27       <summary>Provides security related APIs for the <see. cref="T:System.IO.Pipes.NamedPipeServerStream" /> class.</summary>
28     </member>
29     <member name="M:System.IO.Pipes.NamedPipeServerStreamAcl.Create(System.String,System.IO.Pipes.PipeDirection,System.Int32,System.IO.Pipes.PipeTransmissionMode,System.IO.Pipes.PipeOptions,System.Int32,System.Int32,System.IO.Pipes.PipeSecurity,System.IO.HandleInheritability,System.IO.Pipes.PipeAccessRights)">
30       <summary>Creates a new instance of the <see cref="T:System.IO.Pipes.NamedPipeServerStream" /> class with the specified pipe name, pipe direction, maximum number of server instances, transmission mode, pipe options, recommended in and out buffer sizes, pipe security, inheritability mode, and pipe access rights.</summary>
31       <param name="pipeName">The name of the pipe.</param>
32       <param name="direction">One of the enumeration values that determines the direction of the pipe.</param>
33       <param name="maxNumberOfServerInstances">The maximum number of server instances that share the same name. You can pass <see cref="F:System.IO.Pipes.NamedPipeServerStream.MaxAllowedServerInstances" /> for this value.</param>
34       <param name="transmissionMode">One of the enumeration values that determines the transmission mode of the pipe.</param>
35       <param name="options">One of the enumeration values that determines how to open or create the pipe.</param>
36       <param name="inBufferSize">The input buffer size.</param>
37       <param name="outBufferSize">The output buffer size.</param>
38       <param name="pipeSecurity">An object that determines the access control and audit security for the pipe.</param>
39       <param name="inheritability">One of the enumeration values that determines whether the underlying handle can be inherited by child processes.</param>
40       <param name="additionalAccessRights">One of the enumeration values that specifies the access rights of the pipe.</param>
41       <exception cref="T:System.ArgumentNullException">
42         <paramref name="pipeName" /> is <see langword="null" />.</exception>
43       <exception cref="T:System.ArgumentException">
44         <paramref name="pipeName" /> is empty.</exception>
45       <exception cref="T:System.IO.IOException">
46         <paramref name="options" /> is <see cref="F:System.IO.Pipes.PipeOptions.None" />.</exception>
47       <exception cref="T:System.ArgumentOutOfRangeException">
48         <paramref name="options" /> contains an invalid flag.
49
50 -or-
51
52 <paramref name="inBufferSize" /> or <paramref name="outBufferSize" /> is less than zero.
53
54 -or-
55
56 <paramref name="maxNumberOfServerInstances" /> is not a valid number: it should be greater than or equal to 1 and less than or equal to 254, or should be set to the value of <see cref="F:System.IO.Pipes.NamedPipeServerStream.MaxAllowedServerInstances" />.
57
58 -or-
59
60 <paramref name="inheritability" /> contains an invalid enum value.
61
62 -or-
63
64 <paramref name="pipeName" /> is 'anonymous', which is reserved.</exception>
65       <returns>A new named pipe server stream instance.</returns>
66     </member>
67     <member name="T:System.IO.Pipes.PipeAccessRights">
68       <summary>Defines the access rights to use when you create access and audit rules.</summary>
69     </member>
70     <member name="F:System.IO.Pipes.PipeAccessRights.AccessSystemSecurity">
71       <summary>Specifies the right to make changes to the system access control list (SACL).</summary>
72     </member>
73     <member name="F:System.IO.Pipes.PipeAccessRights.ChangePermissions">
74       <summary>Specifies the right to change the security and audit rules that are associated with a pipe.</summary>
75     </member>
76     <member name="F:System.IO.Pipes.PipeAccessRights.CreateNewInstance">
77       <summary>Specifies the right to create a new pipe. Setting this right also sets the <see cref="F:System.IO.Pipes.PipeAccessRights.Synchronize" /> right.</summary>
78     </member>
79     <member name="F:System.IO.Pipes.PipeAccessRights.Delete">
80       <summary>Specifies the right to delete a pipe.</summary>
81     </member>
82     <member name="F:System.IO.Pipes.PipeAccessRights.FullControl">
83       <summary>Specifies the right to exert full control over a pipe, and to modify access control and audit rules. This value represents the combination of all rights in this enumeration.</summary>
84     </member>
85     <member name="F:System.IO.Pipes.PipeAccessRights.Read">
86       <summary>Specifies the right to read from the pipe. This right includes the <see cref="F:System.IO.Pipes.PipeAccessRights.ReadAttributes" />, <see cref="F:System.IO.Pipes.PipeAccessRights.ReadData" />, <see cref="F:System.IO.Pipes.PipeAccessRights.ReadExtendedAttributes" />, and <see cref="F:System.IO.Pipes.PipeAccessRights.ReadPermissions" /> rights.</summary>
87     </member>
88     <member name="F:System.IO.Pipes.PipeAccessRights.ReadAttributes">
89       <summary>Specifies the right to read file system attributes from a pipe. This does not include the right to read data, extended file system attributes, or access and audit rules.</summary>
90     </member>
91     <member name="F:System.IO.Pipes.PipeAccessRights.ReadData">
92       <summary>Specifies the right to read data from the pipe. This does not include the right to read file system attributes, extended file system attributes, or access and audit rules.</summary>
93     </member>
94     <member name="F:System.IO.Pipes.PipeAccessRights.ReadExtendedAttributes">
95       <summary>Specifies the right to read extended file system attributes from a pipe. This does not include the right to read data, file system attributes, or access and audit rules.</summary>
96     </member>
97     <member name="F:System.IO.Pipes.PipeAccessRights.ReadPermissions">
98       <summary>Specifies the right to read access and audit rules from the pipe. This does not include the right to read data, file system attributes, or extended file system attributes.</summary>
99     </member>
100     <member name="F:System.IO.Pipes.PipeAccessRights.ReadWrite">
101       <summary>Specifies the right to read and write from the pipe. This right includes the <see cref="F:System.IO.Pipes.PipeAccessRights.ReadAttributes" />, <see cref="F:System.IO.Pipes.PipeAccessRights.ReadData" />, <see cref="F:System.IO.Pipes.PipeAccessRights.ReadExtendedAttributes" />, <see cref="F:System.IO.Pipes.PipeAccessRights.ReadPermissions" />, <see cref="F:System.IO.Pipes.PipeAccessRights.WriteAttributes" />, <see cref="F:System.IO.Pipes.PipeAccessRights.WriteData" />, and <see cref="F:System.IO.Pipes.PipeAccessRights.WriteExtendedAttributes" /> rights.</summary>
102     </member>
103     <member name="F:System.IO.Pipes.PipeAccessRights.Synchronize">
104       <summary>Specifies whether the application can wait for a pipe handle to synchronize with the completion of an I/O operation. This value is automatically set when allowing access to the pipe and automatically excluded when denying access to the pipe. The right to create a pipe requires this value. Note that if you do not explicitly set this value when you create a pipe, the value will be set automatically for you.</summary>
105     </member>
106     <member name="F:System.IO.Pipes.PipeAccessRights.TakeOwnership">
107       <summary>Specifies the right to change the owner of a pipe. Note that owners of a pipe have full access to that resource.</summary>
108     </member>
109     <member name="F:System.IO.Pipes.PipeAccessRights.Write">
110       <summary>Specifies the right to write to the pipe. This right includes the <see cref="F:System.IO.Pipes.PipeAccessRights.WriteAttributes" />, <see cref="F:System.IO.Pipes.PipeAccessRights.WriteData" />, and <see cref="F:System.IO.Pipes.PipeAccessRights.WriteExtendedAttributes" /> rights.</summary>
111     </member>
112     <member name="F:System.IO.Pipes.PipeAccessRights.WriteAttributes">
113       <summary>Specifies the right to write file system attributes to a pipe. This does not include the right to write data or extended file system attributes.</summary>
114     </member>
115     <member name="F:System.IO.Pipes.PipeAccessRights.WriteData">
116       <summary>Specifies the right to write data to a pipe. This does not include the right to write file system attributes or extended file system attributes.</summary>
117     </member>
118     <member name="F:System.IO.Pipes.PipeAccessRights.WriteExtendedAttributes">
119       <summary>Specifies the right to write extended file system attributes to a pipe. This does not include the right to write file attributes or data.</summary>
120     </member>
121     <member name="T:System.IO.Pipes.PipeAccessRule">
122       <summary>Represents an abstraction of an access control entry (ACE) that defines an access rule for a pipe.</summary>
123     </member>
124     <member name="M:System.IO.Pipes.PipeAccessRule.#ctor(System.Security.Principal.IdentityReference,System.IO.Pipes.PipeAccessRights,System.Security.AccessControl.AccessControlType)">
125       <summary>Initializes a new instance of the <see cref="T:System.IO.Pipes.PipeAccessRule" /> class with the specified identity, pipe access rights, and access control type.</summary>
126       <param name="identity">An <see cref="T:System.Security.Principal.IdentityReference" /> object that encapsulates a reference to a user account.</param>
127       <param name="rights">One of the <see cref="T:System.IO.Pipes.PipeAccessRights" /> values that specifies the type of operation associated with the access rule.</param>
128       <param name="type">One of the <see cref="T:System.Security.AccessControl.AccessControlType" /> values that specifies whether to allow or deny the operation.</param>
129     </member>
130     <member name="M:System.IO.Pipes.PipeAccessRule.#ctor(System.String,System.IO.Pipes.PipeAccessRights,System.Security.AccessControl.AccessControlType)">
131       <summary>Initializes a new instance of the <see cref="T:System.IO.Pipes.PipeAccessRule" /> class with the specified identity, pipe access rights, and access control type.</summary>
132       <param name="identity">The name of the user account.</param>
133       <param name="rights">One of the <see cref="T:System.IO.Pipes.PipeAccessRights" /> values that specifies the type of operation associated with the access rule.</param>
134       <param name="type">One of the <see cref="T:System.Security.AccessControl.AccessControlType" /> values that specifies whether to allow or deny the operation.</param>
135     </member>
136     <member name="P:System.IO.Pipes.PipeAccessRule.PipeAccessRights">
137       <summary>Gets the <see cref="T:System.IO.Pipes.PipeAccessRights" /> flags that are associated with the current <see cref="T:System.IO.Pipes.PipeAccessRule" /> object.</summary>
138       <returns>A bitwise combination of the <see cref="T:System.IO.Pipes.PipeAccessRights" /> values.</returns>
139     </member>
140     <member name="T:System.IO.Pipes.PipeAuditRule">
141       <summary>Represents an abstraction of an access control entry (ACE) that defines an audit rule for a pipe.</summary>
142     </member>
143     <member name="M:System.IO.Pipes.PipeAuditRule.#ctor(System.Security.Principal.IdentityReference,System.IO.Pipes.PipeAccessRights,System.Security.AccessControl.AuditFlags)">
144       <summary>Initializes a new instance of the <see cref="T:System.IO.Pipes.PipeAuditRule" /> class for a user account specified in a <see cref="T:System.Security.Principal.IdentityReference" /> object.</summary>
145       <param name="identity">An <see cref="T:System.Security.Principal.IdentityReference" /> object that encapsulates a reference to a user account.</param>
146       <param name="rights">One of the <see cref="T:System.IO.Pipes.PipeAccessRights" /> values that specifies the type of operation associated with the access rule.</param>
147       <param name="flags">One of the <see cref="T:System.Security.AccessControl.AuditFlags" /> values that specifies when to perform auditing.</param>
148     </member>
149     <member name="M:System.IO.Pipes.PipeAuditRule.#ctor(System.String,System.IO.Pipes.PipeAccessRights,System.Security.AccessControl.AuditFlags)">
150       <summary>Initializes a new instance of the <see cref="T:System.IO.Pipes.PipeAuditRule" /> class for a named user account.</summary>
151       <param name="identity">The name of the user account.</param>
152       <param name="rights">One of the <see cref="T:System.IO.Pipes.PipeAccessRights" /> values that specifies the type of operation associated with the access rule.</param>
153       <param name="flags">One of the <see cref="T:System.Security.AccessControl.AuditFlags" /> values that specifies when to perform auditing.</param>
154     </member>
155     <member name="P:System.IO.Pipes.PipeAuditRule.PipeAccessRights">
156       <summary>Gets the <see cref="T:System.IO.Pipes.PipeAccessRights" /> flags that are associated with the current <see cref="T:System.IO.Pipes.PipeAuditRule" /> object.</summary>
157       <returns>A bitwise combination of the <see cref="T:System.IO.Pipes.PipeAccessRights" /> values.</returns>
158     </member>
159     <member name="T:System.IO.Pipes.PipesAclExtensions">
160       <summary>Provides Windows-specific static extension methods for manipulating Access Control List (ACL) security attributes for pipe streams.</summary>
161     </member>
162     <member name="M:System.IO.Pipes.PipesAclExtensions.GetAccessControl(System.IO.Pipes.PipeStream)">
163       <summary>Returns the security information of a pipe stream.</summary>
164       <param name="stream">The existing pipe stream from which to obtain the security information.</param>
165       <returns>The security descriptors of all the access control sections of the pipe stream.</returns>
166     </member>
167     <member name="M:System.IO.Pipes.PipesAclExtensions.SetAccessControl(System.IO.Pipes.PipeStream,System.IO.Pipes.PipeSecurity)">
168       <summary>Changes the security attributes of an existing pipe stream.</summary>
169       <param name="stream">An existing pipe stream.</param>
170       <param name="pipeSecurity">The security information to apply to the pipe stream.</param>
171       <exception cref="T:System.ArgumentNullException">
172         <paramref name="pipeSecurity" /> is <see langword="null" />.</exception>
173       <exception cref="T:System.IO.IOException">
174         <paramref name="stream" /> is a disconnected <see cref="T:System.IO.Pipes.NamedPipeClientStream" /> instance.</exception>
175     </member>
176     <member name="T:System.IO.Pipes.PipeSecurity">
177       <summary>Represents the access control and audit security for a pipe.</summary>
178     </member>
179     <member name="M:System.IO.Pipes.PipeSecurity.#ctor">
180       <summary>Initializes a new instance of the <see cref="T:System.IO.Pipes.PipeSecurity" /> class.</summary>
181     </member>
182     <member name="M:System.IO.Pipes.PipeSecurity.AccessRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)">
183       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.AccessRule" /> class with the specified values.</summary>
184       <param name="identityReference">The identity that the access rule applies to. It must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" /> object.</param>
185       <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>
186       <param name="isInherited">
187         <see langword="true" /> if this rule is inherited from a parent container; otherwise, <see langword="false" />.</param>
188       <param name="inheritanceFlags">One of the <see cref="T:System.Security.AccessControl.InheritanceFlags" /> values that specifies the inheritance properties of the access rule.</param>
189       <param name="propagationFlags">One of the <see cref="T:System.Security.AccessControl.PropagationFlags" /> values that 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>
190       <param name="type">Specifies the valid access control type.</param>
191       <exception cref="T:System.ArgumentOutOfRangeException">
192         <paramref name="accessMask" />, <paramref name="inheritanceFlags" />, <paramref name="propagationFlags" />, or <paramref name="type" /> specifies an invalid value.</exception>
193       <exception cref="T:System.ArgumentNullException">
194         <paramref name="identityReference" /> is <see langword="null" />.  
195   
196  -or-  
197   
198  <paramref name="accessMask" /> is zero.</exception>
199       <exception cref="T:System.ArgumentException">
200         <paramref name="identityReference" /> is neither of type <see cref="T:System.Security.Principal.SecurityIdentifier" /> nor of a type, such as <see cref="T:System.Security.Principal.NTAccount" />, that can be converted to type <see cref="T:System.Security.Principal.SecurityIdentifier" />.</exception>
201       <returns>The <see cref="T:System.Security.AccessControl.AccessRule" /> object that this method creates.</returns>
202     </member>
203     <member name="M:System.IO.Pipes.PipeSecurity.AddAccessRule(System.IO.Pipes.PipeAccessRule)">
204       <summary>Adds an access rule to the Discretionary Access Control List (DACL) that is associated with the current <see cref="T:System.IO.Pipes.PipeSecurity" /> object.</summary>
205       <param name="rule">The access rule to add.</param>
206       <exception cref="T:System.ArgumentNullException">The <paramref name="rule" /> parameter is <see langword="null" />.</exception>
207     </member>
208     <member name="M:System.IO.Pipes.PipeSecurity.AddAuditRule(System.IO.Pipes.PipeAuditRule)">
209       <summary>Adds an audit rule to the System Access Control List (SACL) that is associated with the current <see cref="T:System.IO.Pipes.PipeSecurity" /> object.</summary>
210       <param name="rule">The audit rule to add.</param>
211       <exception cref="T:System.ArgumentNullException">The <paramref name="rule" /> parameter is <see langword="null" />.</exception>
212     </member>
213     <member name="M:System.IO.Pipes.PipeSecurity.AuditRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)">
214       <summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.AuditRule" /> class with the specified values.</summary>
215       <param name="identityReference">The identity that the access rule applies to. It must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" /> object.</param>
216       <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>
217       <param name="isInherited">
218         <see langword="true" /> if this rule is inherited from a parent container; otherwise, false.</param>
219       <param name="inheritanceFlags">One of the <see cref="T:System.Security.AccessControl.InheritanceFlags" /> values that specifies the inheritance properties of the access rule.</param>
220       <param name="propagationFlags">One of the <see cref="T:System.Security.AccessControl.PropagationFlags" /> values that 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>
221       <param name="flags">One of the <see cref="T:System.Security.AccessControl.AuditFlags" /> values that specifies the valid access control type.</param>
222       <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="accessMask" />, <paramref name="inheritanceFlags" />, <paramref name="propagationFlags" />, or <paramref name="flags" /> properties specify an invalid value.</exception>
223       <exception cref="T:System.ArgumentNullException">The <paramref name="identityReference" /> property is <see langword="null" />.  
224   
225  -or-  
226   
227  The <paramref name="accessMask" /> property is zero.</exception>
228       <exception cref="T:System.ArgumentException">The <paramref name="identityReference" /> property is neither of type <see cref="T:System.Security.Principal.SecurityIdentifier" /> nor of a type, such as <see cref="T:System.Security.Principal.NTAccount" />, that can be converted to type <see cref="T:System.Security.Principal.SecurityIdentifier" />.</exception>
229       <returns>The <see cref="T:System.Security.AccessControl.AuditRule" /> object that this method creates.</returns>
230     </member>
231     <member name="M:System.IO.Pipes.PipeSecurity.Persist(System.Runtime.InteropServices.SafeHandle)">
232       <summary>Saves the specified sections of the security descriptor that is associated with the current <see cref="T:System.IO.Pipes.PipeSecurity" /> object to permanent storage.</summary>
233       <param name="handle">The handle of the securable object that the current <see cref="T:System.IO.Pipes.PipeSecurity" /> object is associated with.</param>
234     </member>
235     <member name="M:System.IO.Pipes.PipeSecurity.Persist(System.String)">
236       <summary>Saves the specified sections of the security descriptor that is associated with the current <see cref="T:System.IO.Pipes.PipeSecurity" /> object to permanent storage.</summary>
237       <param name="name">The name of the securable object that the current <see cref="T:System.IO.Pipes.PipeSecurity" /> object is associated with.</param>
238     </member>
239     <member name="M:System.IO.Pipes.PipeSecurity.RemoveAccessRule(System.IO.Pipes.PipeAccessRule)">
240       <summary>Removes an access rule from the Discretionary Access Control List (DACL) that is associated with the current <see cref="T:System.IO.Pipes.PipeSecurity" /> object.</summary>
241       <param name="rule">The access rule to remove.</param>
242       <exception cref="T:System.ArgumentNullException">The <paramref name="rule" /> parameter is <see langword="null" />.</exception>
243       <returns>
244         <see langword="true" /> if the operation is successful; otherwise, <see langword="false" />.</returns>
245     </member>
246     <member name="M:System.IO.Pipes.PipeSecurity.RemoveAccessRuleSpecific(System.IO.Pipes.PipeAccessRule)">
247       <summary>Removes the specified access rule from the Discretionary Access Control List (DACL) that is associated with the current <see cref="T:System.IO.Pipes.PipeSecurity" /> object.</summary>
248       <param name="rule">The access rule to remove.</param>
249       <exception cref="T:System.ArgumentNullException">The <paramref name="rule" /> parameter is <see langword="null" />.</exception>
250     </member>
251     <member name="M:System.IO.Pipes.PipeSecurity.RemoveAuditRule(System.IO.Pipes.PipeAuditRule)">
252       <summary>Removes an audit rule from the System Access Control List (SACL) that is associated with the current <see cref="T:System.IO.Pipes.PipeSecurity" /> object.</summary>
253       <param name="rule">The audit rule to remove.</param>
254       <exception cref="T:System.ArgumentNullException">The <paramref name="rule" /> parameter is <see langword="null" />.</exception>
255       <returns>
256         <see langword="true" /> if the audit rule was removed; otherwise, <see langword="false" />.</returns>
257     </member>
258     <member name="M:System.IO.Pipes.PipeSecurity.RemoveAuditRuleAll(System.IO.Pipes.PipeAuditRule)">
259       <summary>Removes all audit rules that have the same security identifier as the specified audit rule from the System Access Control List (SACL) that is associated with the current <see cref="T:System.IO.Pipes.PipeSecurity" /> object.</summary>
260       <param name="rule">The audit rule to remove.</param>
261       <exception cref="T:System.ArgumentNullException">The <paramref name="rule" /> parameter is <see langword="null" />.</exception>
262     </member>
263     <member name="M:System.IO.Pipes.PipeSecurity.RemoveAuditRuleSpecific(System.IO.Pipes.PipeAuditRule)">
264       <summary>Removes the specified audit rule from the System Access Control List (SACL) that is associated with the current <see cref="T:System.IO.Pipes.PipeSecurity" /> object.</summary>
265       <param name="rule">The audit rule to remove.</param>
266       <exception cref="T:System.ArgumentNullException">The <paramref name="rule" /> parameter is <see langword="null" />.</exception>
267     </member>
268     <member name="M:System.IO.Pipes.PipeSecurity.ResetAccessRule(System.IO.Pipes.PipeAccessRule)">
269       <summary>Removes all access rules in the Discretionary Access Control List (DACL) that is associated with the current <see cref="T:System.IO.Pipes.PipeSecurity" /> object and then adds the specified access rule.</summary>
270       <param name="rule">The access rule to add.</param>
271       <exception cref="T:System.ArgumentNullException">The <paramref name="rule" /> parameter is <see langword="null" />.</exception>
272     </member>
273     <member name="M:System.IO.Pipes.PipeSecurity.SetAccessRule(System.IO.Pipes.PipeAccessRule)">
274       <summary>Sets an access rule in the Discretionary Access Control List (DACL) that is associated with the current <see cref="T:System.IO.Pipes.PipeSecurity" /> object.</summary>
275       <param name="rule">The rule to set.</param>
276       <exception cref="T:System.ArgumentNullException">The <paramref name="rule" /> parameter is <see langword="null" />.</exception>
277     </member>
278     <member name="M:System.IO.Pipes.PipeSecurity.SetAuditRule(System.IO.Pipes.PipeAuditRule)">
279       <summary>Sets an audit rule in the System Access Control List (SACL) that is associated with the current <see cref="T:System.IO.Pipes.PipeSecurity" /> object.</summary>
280       <param name="rule">The rule to set.</param>
281       <exception cref="T:System.ArgumentNullException">The <paramref name="rule" /> parameter is <see langword="null" />.</exception>
282     </member>
283     <member name="P:System.IO.Pipes.PipeSecurity.AccessRightType">
284       <summary>Gets the <see cref="T:System.Type" /> of the securable object that is associated with the current <see cref="T:System.IO.Pipes.PipeSecurity" /> object.</summary>
285       <returns>The type of the securable object that is associated with the current <see cref="T:System.IO.Pipes.PipeSecurity" /> object.</returns>
286     </member>
287     <member name="P:System.IO.Pipes.PipeSecurity.AccessRuleType">
288       <summary>Gets the <see cref="T:System.Type" /> of the object that is associated with the access rules of the current <see cref="T:System.IO.Pipes.PipeSecurity" /> object.</summary>
289       <returns>The type of the object that is associated with the access rules of the current <see cref="T:System.IO.Pipes.PipeSecurity" /> object.</returns>
290     </member>
291     <member name="P:System.IO.Pipes.PipeSecurity.AuditRuleType">
292       <summary>Gets the <see cref="T:System.Type" /> object associated with the audit rules of the current <see cref="T:System.IO.Pipes.PipeSecurity" /> object.</summary>
293       <returns>The type of the object that is associated with the audit rules of the current <see cref="T:System.IO.Pipes.PipeSecurity" /> object.</returns>
294     </member>
295   </members>
296 </doc>