Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

PipeStream::SetAccessControl Method (PipeSecurity^)

 

Applies the access control list (ACL) entries specified by a PipeSecurity object to the pipe specified by the current PipeStream object.

Namespace:   System.IO.Pipes
Assembly:  System.Core (in System.Core.dll)

public:
[SecurityCriticalAttribute]
void SetAccessControl(
	PipeSecurity^ pipeSecurity
)

Parameters

pipeSecurity
Type: System.IO.Pipes::PipeSecurity^

A PipeSecurity object that specifies an access control list (ACL) entry to apply to the current pipe.

Exception Condition
ObjectDisposedException

The pipe is closed.

ArgumentNullException

pipeSecurity is null.

UnauthorizedAccessException

The underlying call to set security information failed.

InvalidOperationException

The underlying call to set security information failed.

NotSupportedException

The underlying call to set security information failed.

An access control list (ACL) describes individuals and/or groups that have, or do not have, rights to perform specific actions on a specified file. For more information, see How to: Add or Remove Access Control List Entries.

.NET Framework
Available since 3.5
Return to top
Show:
© 2017 Microsoft