Nevron Open Vision Documentation
Nevron.Nov.Compression Namespace / NCompression Class / DecompressGZip Method
The stream to decompress.
The stream to write the decompressed data to.


In This Topic
    DecompressGZip Method
    In This Topic
    Decompresses the given input stream with the gzip algorithm to the specified output stream.
    Syntax
    'Declaration
     
    
    Public Shared Sub DecompressGZip( _
       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.DecompressGZip(input, output)
    public static void DecompressGZip( 
       System.IO.Stream input,
       System.IO.Stream output
    )

    Parameters

    input
    The stream to decompress.
    output
    The stream to write the decompressed data to.
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later)

    See Also