Ejemplo n.º 1
0
 public ZipDirectory(ZipStorage storage, Directory parent, ZipArchiveEntry directory)
 {
     this.storage   = storage;
     this.parent    = parent;
     this.directory = directory;
 }
Ejemplo n.º 2
0
 public ZipRoot(ZipStorage storage)
 {
     this.storage = storage;
 }
Ejemplo n.º 3
0
 public ZipStream(ZipStorage storage, Stream stream)
 {
     this.storage = storage;
     this.stream  = stream;
 }
Ejemplo n.º 4
0
 public ZipFile(ZipStorage storage, Directory parent, ZipArchiveEntry file)
 {
     this.storage = storage;
     this.parent  = parent;
     this.file    = file;
 }