Class ZipInputStream
Represents a stream that can read from a compressed stream.
Inheritance
Inherited Members
Namespace: Telerik.WinForms.Spreadsheet.Zip
Assembly: Telerik.WinControls.RadSpreadsheet.dll
Syntax
public class ZipInputStream : CompressedStream, IDisposable
Constructors
ZipInputStream(Stream)
Initializes a new instance of the ZipInputStream class.
Declaration
public ZipInputStream(Stream baseStream)
Parameters
System.IO.Stream
baseStream
The stream that will be decompressed. |
Properties
BaseStream
The stream that is decompressed.
Declaration
public Stream BaseStream { get; }
Property Value
System.IO.Stream
|
UncompressedSize
Gets the uncompressed size of the stream.
Declaration
public int UncompressedSize { get; }
Property Value
System.Int32
|
Methods
ReadByte()
Reads a byte from the stream and advances the position within the stream by one byte, or returns -1 if at the end of the stream.
Declaration
public override int ReadByte()
Returns
System.Int32
The unsigned byte cast to an 32-bit integer, or -1 if at the end of the stream. |