ZForge.Zip.ZipEntry.Extract C# (CSharp) Méthode

Extract() public méthode

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.
Résultat 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