File: System\IO\Compression\DeflateManaged\BlockType.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
{
    internal enum BlockType
    {
        Uncompressed = 0,
        Static = 1,
        Dynamic = 2
    }
}