File: System\IO\Compression\CompressionMode.cs
Web Access
Project: src\src\libraries\System.IO.Compression\src\System.IO.Compression.csproj (System.IO.Compression)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System.IO.Compression
{
    public enum CompressionMode
    {
        Decompress = 0,
        Compress = 1
    }
}