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.

BufferedStream Constructor (Stream^, Int32)

 

Initializes a new instance of the BufferedStream class with the specified buffer size.

Namespace:   System.IO
Assembly:  mscorlib (in mscorlib.dll)

public:
BufferedStream(
	Stream^ stream,
	int bufferSize
)

Parameters

stream
Type: System.IO::Stream^

The current stream.

bufferSize
Type: System::Int32

The buffer size in bytes.

Exception Condition
ArgumentNullException

stream is null.

ArgumentOutOfRangeException

bufferSize is negative.

A shared read/write buffer is allocated the first time a BufferedStream object is initialized with this constructor. The shared buffer is not used if all reads and writes are greater than or equal to bufferSize.

This code example is part of a larger example provided for the BufferedStream class.

// Create a NetworkStream that owns clientSocket and 
// then create a BufferedStream on top of the NetworkStream.
NetworkStream^ netStream = gcnew NetworkStream( clientSocket,true );
BufferedStream^ bufStream = gcnew BufferedStream( netStream,streamBufferSize );

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