Shared Cache is high performance distributed and replication cache system built for .Net applications running in server farms.
The Inflater type exposes the following members.
Constructors
| Name | Description | |
|---|---|---|
| Inflater | Overloaded. |
Methods
| Name | Description | |
|---|---|---|
| Equals | (Inherited from Object.) | |
| Finalize |
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.) | |
| GetHashCode |
Serves as a hash function for a particular type.
(Inherited from Object.) | |
| GetType |
Gets the Type of the current instance.
(Inherited from Object.) | |
| Inflate | Overloaded. | |
| MemberwiseClone |
Creates a shallow copy of the current Object.
(Inherited from Object.) | |
| Reset |
Resets the inflater so that a new stream can be decompressed. All
pending input and output will be discarded.
| |
| SetDictionary | Overloaded. | |
| SetInput | Overloaded. | |
| ToString | (Inherited from Object.) |
Properties
| Name | Description | |
|---|---|---|
| Adler |
Gets the adler checksum. This is either the checksum of all
uncompressed bytes returned by inflate(), or if needsDictionary()
returns true (and thus no output was yet produced) this is the
adler checksum of the expected dictionary.
| |
| IsFinished |
Returns true, if the inflater has finished. This means, that no
input is needed and no output can be produced.
| |
| IsNeedingDictionary |
Returns true, if a preset dictionary is needed to inflate the input.
| |
| IsNeedingInput |
Returns true, if the input buffer is empty.
You should then call setInput().
NOTE: This method also returns true when the stream is finished.
| |
| RemainingInput |
Gets the number of unprocessed input bytes. Useful, if the end of the
stream is reached and you want to further process the bytes after
the deflate stream.
| |
| TotalIn |
Gets the total number of processed compressed input bytes.
| |
| TotalOut |
Gets the total number of output bytes returned by Inflate().
|