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^)

 

Initializes a new instance of the BufferedStream class with a default buffer size of 4096 bytes.

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

public:
BufferedStream(
	Stream^ stream
)

Parameters

stream
Type: System.IO::Stream^

The current stream.

Exception Condition
ArgumentNullException

stream is null.

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.

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