File: System\Reflection\Metadata\MetadataKind.cs
Web Access
Project: src\src\libraries\System.Reflection.Metadata\src\System.Reflection.Metadata.csproj (System.Reflection.Metadata)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System.Reflection.Metadata
{
    public enum MetadataKind
    {
        /// <summary>
        /// CLI metadata.
        /// </summary>
        Ecma335 = 0,
 
        /// <summary>
        /// Windows Metadata.
        /// </summary>
        WindowsMetadata = 1,
 
        /// <summary>
        /// Windows Metadata generated by managed compilers.
        /// </summary>
        ManagedWindowsMetadata = 2,
    }
}