SKFrontBufferedStream Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SKFrontBufferedStream(Stream) |
Creates a new instance of SKFrontBufferedStream that wraps the specified stream. |
SKFrontBufferedStream(Stream, Boolean) |
Creates a new instance of SKFrontBufferedStream that wraps the specified stream. |
SKFrontBufferedStream(Stream, Int64) |
Creates a new instance of SKFrontBufferedStream that wraps the specified stream. |
SKFrontBufferedStream(Stream, Int64, Boolean) |
Creates a new instance of SKFrontBufferedStream that wraps the specified stream. |
SKFrontBufferedStream(Stream)
Creates a new instance of SKFrontBufferedStream that wraps the specified stream.
public SKFrontBufferedStream (System.IO.Stream stream);
Parameters
- stream
- Stream
The stream to buffer.
Applies to
SKFrontBufferedStream(Stream, Boolean)
Creates a new instance of SKFrontBufferedStream that wraps the specified stream.
public SKFrontBufferedStream (System.IO.Stream stream, bool disposeUnderlyingStream);
Parameters
- stream
- Stream
The stream to buffer.
- disposeUnderlyingStream
- Boolean
Whether or not to dispose the underlying stream when this stream is disposed.
Applies to
SKFrontBufferedStream(Stream, Int64)
Creates a new instance of SKFrontBufferedStream that wraps the specified stream.
public SKFrontBufferedStream (System.IO.Stream stream, long bufferSize);
Parameters
- stream
- Stream
The stream to buffer.
- bufferSize
- Int64
The number of bytes to buffer.
Applies to
SKFrontBufferedStream(Stream, Int64, Boolean)
Creates a new instance of SKFrontBufferedStream that wraps the specified stream.
public SKFrontBufferedStream (System.IO.Stream stream, long bufferSize, bool disposeUnderlyingStream);
Parameters
- stream
- Stream
The stream to buffer.
- bufferSize
- Int64
The number of bytes to buffer.
- disposeUnderlyingStream
- Boolean
Whether or not to dispose the underlying stream when this stream is disposed.