Skip to content
Andrew Lambert edited this page Oct 10, 2017 · 19 revisions

zlib.Inflater

Class Declaration

 Public Class Inflater

Notes

This class performs decompression of a deflate stream. If you don't need low-level control over the decompression process then the easier to use ZStream class should be preferred.

Methods

Properties

Example

This example gunzips a string:

  Dim gzstring As String ' assume a gzipped string 
  Dim inf As New zlib.Inflater(zlib.GZIP_ENCODING)
  Dim uncompressed As String = inf.Inflate(gzstring)

Entry-level points of interest denoted by "☜"



Clone this wiki locally