BufferedStream Constructor (Stream^, Int32)
.NET Framework (current version)
Initializes a new instance of the BufferedStream class with the specified buffer size.
Assembly: mscorlib (in mscorlib.dll)
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.
.NET Framework
Available since 1.1
Available since 1.1
Show: