Early Preview
This is currently very much a preview. Please feel free to try things out,
but don't be upset if anything is not yet working. Feedback is welcome over on our
GitHub Dicussions page.
enum System.​IO.​Pipes.​PipeAccessRights
Assembly: System.IO.Pipes
Defines the access rights to use when you create access and audit rules.
Values
ReadData
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.
WriteData
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.
CreateNewInstance
Specifies the right to create a new pipe. Setting this right also sets the <see cref="F:System.IO.Pipes.PipeAccessRights.Synchronize" /> right.
ReadExtendedAttributes
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.
WriteExtendedAttributes
Specifies the right to write extended file system attributes to a pipe. This does not include the right to write file attributes or data.
ReadAttributes
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.
WriteAttributes
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.
Write
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.
Delete
Specifies the right to delete a pipe.
ReadPermissions
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.
Read
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.
ReadWrite
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.
ChangePermissions
Specifies the right to change the security and audit rules that are associated with a pipe.
TakeOwnership
Specifies the right to change the owner of a pipe. Note that owners of a pipe have full access to that resource.
Synchronize
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.
FullControl
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.
AccessSystemSecurity
Specifies the right to make changes to the system access control list (SACL).