ZForge.Zip.ZipEntry.Extract C# (CSharp) Method

Extract() public method

Extracts the entry to the specified stream. For example, the caller could specify Console.Out.
public Extract ( System s ) : void
s System the stream to which the entry should be extracted.
return void
        public void Extract(System.IO.Stream s)
        {
            Extract(null, s);
        }

Same methods

ZipEntry::Extract ( ) : void
ZipEntry::Extract ( string BaseDirectory ) : void
ZipEntry::Extract ( string basedir, System s ) : void