Revert "Added System.IO.Compression implementation."
[mono.git] / mcs / class / System.IO.Compression / ZipArchive.cs
1 //
2 // ZipArchive.cs
3 //
4 // Author:
5 //       Martin Baulig <martin.baulig@xamarin.com>
6 //
7 // Copyright (c) 2013 Xamarin Inc. (http://www.xamarin.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining a copy
10 // of this software and associated documentation files (the "Software"), to deal
11 // in the Software without restriction, including without limitation the rights
12 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 // copies of the Software, and to permit persons to whom the Software is
14 // furnished to do so, subject to the following conditions:
15 //
16 // The above copyright notice and this permission notice shall be included in
17 // all copies or substantial portions of the Software.
18 //
19 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 // THE SOFTWARE.
26 using System;
27 using System.Collections.Generic;
28 using System.Collections.ObjectModel;
29 using System.Text;
30
31 namespace System.IO.Compression
32 {
33         [MonoTODO]
34         public class ZipArchive : IDisposable
35         {
36                 public ZipArchive (Stream stream)
37                 {
38                         throw new NotImplementedException ();
39                 }
40
41                 public ZipArchive (Stream stream, ZipArchiveMode mode)
42                         : this (stream)
43                 {
44                 }
45
46                 public ZipArchive (Stream stream, ZipArchiveMode mode,
47                                    bool leaveOpen)
48                         : this (stream, mode)
49                 {
50                 }
51
52                 public ZipArchive (Stream stream, ZipArchiveMode mode,
53                                    bool leaveOpen, Encoding entryNameEncoding)
54                         : this (stream, mode, leaveOpen)
55                 {
56                 }
57
58                 public ReadOnlyCollection<ZipArchiveEntry> Entries {
59                         get {
60                                 throw new NotImplementedException ();
61                         }
62                 }
63
64                 public ZipArchiveMode Mode {
65                         get {
66                                 throw new NotImplementedException ();
67                         }
68                 }
69
70                 public ZipArchiveEntry CreateEntry (string entryName)
71                 {
72                         throw new NotImplementedException ();
73                 }
74
75                 public ZipArchiveEntry CreateEntry (string entryName,
76                                                     CompressionLevel compressionLevel)
77                 {
78                         throw new NotImplementedException ();
79                 }
80
81                 public ZipArchiveEntry GetEntry (string entryName)
82                 {
83                         throw new NotImplementedException ();
84                 }
85
86                 protected virtual void Dispose (bool disposing)
87                 {
88                         throw new NotImplementedException ();
89                 }
90
91                 public void Dispose ()
92                 {
93                         throw new NotImplementedException ();
94                 }
95         }
96 }
97