BindingFlags.Public needed here as Exception.HResult is now public in .NET 4.5. This...
[mono.git] / mcs / class / System / System.IO.Compression / CompressionMode.cs
1 /* -*- Mode: csharp; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 // 
3 // CompressionMOode.cs
4 //
5 // Authors:
6 //      Christopher James Lahey <clahey@ximian.com>
7 //
8 // (c) 2004 Novell, Inc. (http://www.novell.com)
9 //
10
11 #if NET_2_0
12
13 namespace System.IO.Compression {
14         public enum CompressionMode {
15                 Decompress=0,   // Decompress the given stream.
16                 Compress=1      // Compress the given stream.
17         };
18 }
19
20 #endif