ZipFile.GetInputStream Method

Creates an input stream reading the given zip entry as uncompressed data. Normally zip entry should be an entry returned by GetEntry().

[Visual Basic]
Public Function GetInputStream( _
   ByVal entry As ICSharpCode.SharpZipLib.Zip.ZipEntry _
) As System.IO.Stream
[C#]
public Stream GetInputStream(
   ZipEntry entry
);

Return Value

the input stream.

Exceptions

Exception TypeCondition
if the Zip archive is malformed.
if a i/o error occured.

See Also

ZipFile Class | ZipFile Members | ICSharpCode.SharpZipLib.Zip Namespace