SKFrontBufferedManagedStream 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
SKFrontBufferedManagedStream(SKStream, Int32) |
Creates a new instance of SKFrontBufferedStream that wraps the specified stream. |
SKFrontBufferedManagedStream(Stream, Int32) |
Creates a new instance of SKFrontBufferedStream that wraps the specified stream. |
SKFrontBufferedManagedStream(SKStream, Int32, Boolean) |
Creates a new instance of SKFrontBufferedStream that wraps the specified stream. |
SKFrontBufferedManagedStream(Stream, Int32, Boolean) |
Creates a new instance of SKFrontBufferedStream that wraps the specified stream. |
SKFrontBufferedManagedStream(SKStream, Int32)
Creates a new instance of SKFrontBufferedStream that wraps the specified stream.
public SKFrontBufferedManagedStream (SkiaSharp.SKStream nativeStream, int bufferSize);
Parameters
- nativeStream
- SKStream
The stream to buffer.
- bufferSize
- Int32
The number of bytes to buffer.
Applies to
SKFrontBufferedManagedStream(Stream, Int32)
Creates a new instance of SKFrontBufferedStream that wraps the specified stream.
public SKFrontBufferedManagedStream (System.IO.Stream managedStream, int bufferSize);
Parameters
- managedStream
- Stream
The stream to buffer.
- bufferSize
- Int32
The number of bytes to buffer.
Applies to
SKFrontBufferedManagedStream(SKStream, Int32, Boolean)
Creates a new instance of SKFrontBufferedStream that wraps the specified stream.
public SKFrontBufferedManagedStream (SkiaSharp.SKStream nativeStream, int bufferSize, bool disposeUnderlyingStream);
Parameters
- nativeStream
- SKStream
The stream to buffer.
- bufferSize
- Int32
The number of bytes to buffer.
- disposeUnderlyingStream
- Boolean
Whether or not to dispose the underlying stream when this stream is disposed.
Applies to
SKFrontBufferedManagedStream(Stream, Int32, Boolean)
Creates a new instance of SKFrontBufferedStream that wraps the specified stream.
public SKFrontBufferedManagedStream (System.IO.Stream managedStream, int bufferSize, bool disposeUnderlyingStream);
Parameters
- managedStream
- Stream
The stream to buffer.
- bufferSize
- Int32
The number of bytes to buffer.
- disposeUnderlyingStream
- Boolean
Whether or not to dispose the underlying stream when this stream is disposed.