Xceed .NET Libraries Documentation
Xceed.Compression Assembly / Xceed.Compression Namespace / ManagedPPMdDecompressor Class / Decompress Method / Decompress(Stream,Stream,Boolean) Method
The compressed stream that will be decompressed. Cannot be null.
The resulting decompressed stream. Cannot be null.
true if the end of the compressed data has been reached; false otherwise.


In This Topic
    Decompress(Stream,Stream,Boolean) Method
    In This Topic
    Decompresses a stream.
    Syntax
    '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.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also