ComHelper.OpenGzip

OpenGzip(Stream)

Allows a COM application to load a gzip archive from a stream.

public GzipArchive OpenGzip(Stream stream)
ParameterTypeDescription
streamStreamA .NET stream object that contains the archive to load.

Return Value

A GzipArchive object that represents the archive.

See Also


OpenGzip(string)

Allows a COM application to load a gzip archive from a file.

public GzipArchive OpenGzip(string fileName)
ParameterTypeDescription
fileNameStringFilename of the archive to load.

Return Value

A GzipArchive object that represents the archive.

See Also