ComHelper.OpenZip

OpenZip(Stream)

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

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

Return Value

A Archive object that represents the archive.

See Also


OpenZip(string)

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

public Archive OpenZip(string fileName)
ParameterTypeDescription
fileNameStringFilename of the archive to load.

Return Value

A Archive object that represents the archive.

See Also