using System;
namespace System.IO.Compression
{
/// Specifies whether to compress or decompress the underlying stream.
// Token: 0x02000108 RID: 264
public enum CompressionMode
{
/// Decompresses the underlying stream.
// Token: 0x0400031D RID: 797
Decompress,
/// Compresses the underlying stream.
// Token: 0x0400031E RID: 798
Compress
}
}