Skip to content
Andrew Lambert edited this page Nov 26, 2022 · 19 revisions

zlib.Inflater

Class Declaration

 Protected Class Inflater

Remarks

This class represents a decompression 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