Exemple #1
0
 internal TarEntry(TarFilePart filePart, CompressionType type)
 {
     this._filePart  = filePart;
     CompressionType = type;
 }
 internal TarEntry(TarFilePart filePart, CompressionType type)
 {
     this.filePart = filePart;
     this.type = type;
 }
 internal TarArchiveEntry(TarArchive archive, TarFilePart part, CompressionType compressionType)
     : base(part, compressionType)
 {
     Archive = archive;
 }
Exemple #4
0
        internal TarArchiveEntry(int index, TarArchive archive, TarFilePart part, CompressionType compressionType)
            : base(part, compressionType)
        {
			this.Index = index;
            this.archive = archive;
        }
 internal TarEntry(TarFilePart filePart)
 {
     this.filePart = filePart;
 }
Exemple #6
0
 internal TarEntry(TarFilePart filePart, SharpCompress.Common.CompressionType type)
 {
     this.filePart = filePart;
     this.type = type;
 }
Exemple #7
0
 internal TarEntry(TarFilePart filePart)
 {
     this.filePart = filePart;
 }
Exemple #8
0
 internal TarEntry(TarFilePart filePart, SharpCompress.Common.CompressionType type)
 {
     this.filePart = filePart;
     this.type     = type;
 }