public ZipArchive (Stream stream, Append append, bool ownsStream) { Stream = new ZipStream (stream, ownsStream); Handle = NativeZip.OpenArchive (Stream.IOFunctions, append); }
public UnzipArchive(Stream stream, bool ownsStream) { Stream = new ZipStream(stream, ownsStream); Handle = NativeVersion.Use32Bit ? NativeUnzip.OpenArchive32(Stream.IOFunctions32) : NativeUnzip.OpenArchive64(Stream.IOFunctions64); }
public UnzipArchive(Stream stream, bool ownsStream) { Stream = new ZipStream(stream, ownsStream); Handle = NativeUnzip.OpenArchive(Stream.IOFunctions); }
public UnzipArchive (Stream stream, bool ownsStream) { Stream = new ZipStream (stream, ownsStream); Handle = NativeVersion.Use32Bit ? NativeUnzip.OpenArchive32 (Stream.IOFunctions32) : NativeUnzip.OpenArchive64 (Stream.IOFunctions64); }
public UnzipArchive (Stream stream, bool ownsStream) { Stream = new ZipStream (stream, ownsStream); Handle = NativeUnzip.OpenArchive (Stream.IOFunctions); }
public ZipArchive(Stream stream, Append append, bool ownsStream) { Stream = new ZipStream(stream, ownsStream); Handle = NativeVersion.Use32Bit ? NativeZip.OpenArchive32(Stream.IOFunctions32, append) : NativeZip.OpenArchive64(Stream.IOFunctions64, append); }
public ZipArchive(Stream stream, Append append, bool ownsStream) { Stream = new ZipStream(stream, ownsStream); Handle = NativeZip.OpenArchive(Stream.IOFunctions, append); }
public ZipArchive (Stream stream, Append append, bool ownsStream) { Stream = new ZipStream (stream, ownsStream); Handle = NativeVersion.Use32Bit ? NativeZip.OpenArchive32 (Stream.IOFunctions32, append) : NativeZip.OpenArchive64 (Stream.IOFunctions64, append); }