NamedPipeServerStream Constructor (String^)

 

Initializes a new instance of the NamedPipeServerStream class with the specified pipe name.

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

public:
NamedPipeServerStream(
	String^ pipeName
)

Parameters

pipeName
Type: System::String^

The name of the pipe.

Exception Condition
ArgumentNullException

pipeName is null.

ArgumentException

pipeName is a zero-length string.

ArgumentOutOfRangeException

pipeName is set to "anonymous".

NotSupportedException

pipeName contains a colon (":").

PlatformNotSupportedException

The operating system is Windows Millennium Edition, Windows 98, or Windows 95, which are not supported.

IOException

The maximum number of server instances has been exceeded.

This constructor creates a NamedPipeServerStream object that has the following characteristics:

Demand

For full trust for the immediate caller. This member cannot be used by partially trusted code.

.NET Framework
Available since 3.5
Return to top
Show: