Method | Description | |
---|---|---|
BZip2InputStream ( Stream stream ) : System |
Construct instance for reading from stream
|
|
Flush ( ) : void |
Flushes the stream.
|
|
Read ( byte buffer, int offset, int count ) : int |
Read a sequence of bytes and advances the read position by one byte.
|
|
ReadByte ( ) : int |
Read a byte from stream advancing position
|
|
Seek ( long offset, SeekOrigin origin ) : long |
Set the streams position. This operation is not supported and will throw a NotSupportedException
|
|
SetLength ( long value ) : void |
Sets the length of this stream to the given value. This operation is not supported and will throw a NotSupportedExceptionortedException
|
|
Write ( byte buffer, int offset, int count ) : void |
Writes a block of bytes to this stream using data from a buffer. This operation is not supported and will throw a NotSupportedException
|
|
WriteByte ( byte value ) : void |
Writes a byte to the current position in the file stream. This operation is not supported and will throw a NotSupportedException
|
Method | Description | |
---|---|---|
Dispose ( bool disposing ) : void |
Closes the stream, releasing any associated resources.
|
Method | Description | |
---|---|---|
BadBlockHeader ( ) : void | ||
BlockOverrun ( ) : void | ||
BsGetInt32 ( ) : int | ||
BsGetIntVS ( int numBits ) : int | ||
BsGetUChar ( ) : char | ||
BsR ( int n ) : int | ||
BsSetStream ( Stream stream ) : void | ||
Complete ( ) : void | ||
CompressedStreamEOF ( ) : void | ||
CrcError ( ) : void | ||
EndBlock ( ) : void | ||
FillBuffer ( ) : void | ||
GetAndMoveToFrontDecode ( ) : void | ||
HbCreateDecodeTables ( int limit, int baseArray, int perm, char length, int minLen, int maxLen, int alphaSize ) : void | ||
InitBlock ( ) : void | ||
Initialize ( ) : void | ||
MakeMaps ( ) : void | ||
RecvDecodingTables ( ) : void | ||
SetDecompressStructureSizes ( int newSize100k ) : void | ||
SetupBlock ( ) : void | ||
SetupNoRandPartA ( ) : void | ||
SetupNoRandPartB ( ) : void | ||
SetupNoRandPartC ( ) : void | ||
SetupRandPartA ( ) : void | ||
SetupRandPartB ( ) : void | ||
SetupRandPartC ( ) : void |
public BZip2InputStream ( Stream stream ) : System | ||
stream | Stream | Data source |
return | System |
public Read ( byte buffer, int offset, int count ) : int | ||
buffer | byte | Array of bytes to store values in |
offset | int | Offset in array to begin storing data |
count | int | The maximum number of bytes to read |
return | int |
public Seek ( long offset, SeekOrigin origin ) : long | ||
offset | long | A byte offset relative to the |
origin | SeekOrigin | A value of type |
return | long |
public SetLength ( long value ) : void | ||
value | long | The new length for the stream. |
return | void |
public Write ( byte buffer, int offset, int count ) : void | ||
buffer | byte | The buffer to source data from. |
offset | int | The offset to start obtaining data from. |
count | int | The number of bytes of data to write. |
return | void |
public WriteByte ( byte value ) : void | ||
value | byte | The value to write. |
return | void |