Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

18 lines
389 B
C#

/* -*- Mode: csharp; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
//
// CompressionMOode.cs
//
// Authors:
// Christopher James Lahey <clahey@ximian.com>
//
// (c) 2004 Novell, Inc. (http://www.novell.com)
//
namespace System.IO.Compression {
public enum CompressionMode {
Decompress=0, // Decompress the given stream.
Compress=1 // Compress the given stream.
};
}