Пример #1
0
 public ZipDirectory(ZipStorage storage, Directory parent, ZipArchiveEntry directory)
 {
     this.storage   = storage;
     this.parent    = parent;
     this.directory = directory;
 }
Пример #2
0
 public ZipRoot(ZipStorage storage)
 {
     this.storage = storage;
 }
Пример #3
0
 public ZipFile(ZipStorage storage, Directory parent, ZipArchiveEntry file)
 {
     this.storage = storage;
     this.parent  = parent;
     this.file    = file;
 }
Пример #4
0
 public ZipFile(ZipStorage storage, Directory parent, ZipArchiveEntry file)
 {
     this.storage = storage;
     this.parent = parent;
     this.file = file;
 }
Пример #5
0
 public ZipRoot(ZipStorage storage)
 {
     this.storage = storage;
 }
Пример #6
0
 public ZipStream(ZipStorage storage, Stream stream)
 {
     this.storage = storage;
     this.stream  = stream;
 }
Пример #7
0
 public ZipStream(ZipStorage storage, Stream stream)
 {
     this.storage = storage;
     this.stream = stream;
 }
Пример #8
0
 public ZipDirectory(ZipStorage storage, Directory parent, ZipArchiveEntry directory)
 {
     this.storage = storage;
     this.parent = parent;
     this.directory = directory;
 }