Nevron .NET Vision
Nevron.Compression Namespace / NCompression Class / Decompress Method


In This Topic
    Decompress Method (NCompression)
    In This Topic
    Decompresses the given input stream with the gzip algorithm (also known as zlib).
    Syntax
    'Declaration
     
    
    Public Shared Sub Decompress( _
       ByVal input As System.IO.Stream, _
       ByVal output As System.IO.Stream _
    ) 
    'Usage
     
    
    Dim input As System.IO.Stream
    Dim output As System.IO.Stream
     
    NCompression.Decompress(input, output)
    public static void Decompress( 
       System.IO.Stream input,
       System.IO.Stream output
    )

    Parameters

    input
    output
    Remarks
    The gzip algorithm is very popular because of its great performance. It is used in many formats such as ZIP, PNG, PDF, flash movies (SWF), etc.
    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