Exemplo n.º 1
0
            public ArchiveCreatorParams(string arc_path,
                                        ArchiveEntry[] arc_entries, ArchiveTypes arc_type, CompressionMethods comp_methd)
            {
                this.archive_path    = arc_path;
                this.archive_entries = arc_entries;

                this.archive_type    = arc_type;
                this.compress_method = comp_methd;
            }
Exemplo n.º 2
0
 internal AbstractReader(SharpCompress.Common.Options options, SharpCompress.Common.ArchiveType archiveType)
 {
     this.skipBuffer  = new byte[0x1000];
     this.ArchiveType = archiveType;
     this.Options     = options;
 }
Exemplo n.º 3
0
 public static void LoadArchive(FileInfo file, SharpCompress.Common.ArchiveType type)
 {
 }
Exemplo n.º 4
0
 internal AbstractReader(SharpCompress.Common.Options options, SharpCompress.Common.ArchiveType archiveType)
 {
     this.ArchiveType = archiveType;
     this.Options     = options;
 }