Exemplo n.º 1
0
        internal static MZipArchive CreateOnStream(Stream stream)
        {
            var mzip = new MZipArchive()
            {
                zip    = new Ionic.Zip.ZipFile(),
                stream = stream,
            };

            return(mzip);
        }
Exemplo n.º 2
0
 public static IZipArchive CreateOnStream(Stream stream)
 {
     return(MZipArchive.CreateOnStream(stream));
 }
Exemplo n.º 3
0
 public static IZipArchive OpenOnStream(Stream stream)
 {
     return(MZipArchive.OpenOnStream(stream));
 }