'Declaration Public Overloads Overridable Sub Decompress( _ ByVal compressedStream As Stream, _ ByVal decompressedStream As Stream, _ ByRef endOfData As Boolean _ )
'Usage Dim instance As ManagedPPMdDecompressor Dim compressedStream As Stream Dim decompressedStream As Stream Dim endOfData As Boolean instance.Decompress(compressedStream, decompressedStream, endOfData)
public virtual void Decompress( Stream compressedStream, Stream decompressedStream, ref bool endOfData )
Parameters
- compressedStream
- The compressed stream that will be decompressed. Cannot be null.
- decompressedStream
- The resulting decompressed stream. Cannot be null.
- endOfData
- true if the end of the compressed data has been reached; false otherwise.