System.Reflection.Metadata 9.0.0-rc.1.24431.7

About

This package provides a low-level .NET (ECMA-335) metadata reader and writer. It's geared for performance and is the ideal choice for building higher-level libraries that intend to provide their own object model, such as compilers. The metadata format is defined by the ECMA-335 - Common Language Infrastructure (CLI) specification and its amendments.

The System.Reflection.Metadata library is included in the .NET Runtime shared framework. The package can be installed when you need to use it in other target frameworks.

How to Use

The following example shows how to read assembly information using PEReader and MetadataReader.

using System;
using System.IO;
using System.Reflection.Metadata;
using System.Reflection.PortableExecutable;

class Program
{
    static void Main()
    {
        // Open the Portable Executable (PE) file
        using var fs = new FileStream("Example.dll", FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
        using var peReader = new PEReader(fs);

        // Display PE header information
        PEHeader header = peReader.PEHeaders.PEHeader;
        Console.WriteLine($"Image base:     0x{header.ImageBase:X}");
        Console.WriteLine($"File alignment: 0x{header.FileAlignment:X}");
        Console.WriteLine($"Subsystem:      {header.Subsystem}");

        // Display .NET metadata information
        if (!peReader.HasMetadata)
        {
            Console.WriteLine("Image does not contain .NET metadata");
            return;
        }

        MetadataReader mr = peReader.GetMetadataReader();
        AssemblyDefinition ad = mr.GetAssemblyDefinition();
        Console.WriteLine($"Assembly name:  {ad.GetAssemblyName().ToString()}");
        Console.WriteLine();
        Console.WriteLine("Assembly attributes:");

        foreach (CustomAttributeHandle attrHandle in ad.GetCustomAttributes())
        {
            CustomAttribute attr = mr.GetCustomAttribute(attrHandle);

            // Display the attribute type full name
            if (attr.Constructor.Kind == HandleKind.MethodDefinition)
            {
                MethodDefinition mdef = mr.GetMethodDefinition((MethodDefinitionHandle)attr.Constructor);
                TypeDefinition tdef = mr.GetTypeDefinition(mdef.GetDeclaringType());
                Console.WriteLine($"{mr.GetString(tdef.Namespace)}.{mr.GetString(tdef.Name)}");
            }
            else if (attr.Constructor.Kind == HandleKind.MemberReference)
            {
                MemberReference mref = mr.GetMemberReference((MemberReferenceHandle)attr.Constructor);

                if (mref.Parent.Kind == HandleKind.TypeReference)
                {
                    TypeReference tref = mr.GetTypeReference((TypeReferenceHandle)mref.Parent);
                    Console.WriteLine($"{mr.GetString(tref.Namespace)}.{mr.GetString(tref.Name)}");
                }
                else if (mref.Parent.Kind == HandleKind.TypeDefinition)
                {
                    TypeDefinition tdef = mr.GetTypeDefinition((TypeDefinitionHandle)mref.Parent);
                    Console.WriteLine($"{mr.GetString(tdef.Namespace)}.{mr.GetString(tdef.Name)}");
                }
            }
        }
    }
}

Main Types

The main types provided by this library are:

  • System.Reflection.Metadata.MetadataReader
  • System.Reflection.PortableExecutable.PEReader
  • System.Reflection.Metadata.Ecma335.MetadataBuilder
  • System.Reflection.PortableExecutable.PEBuilder
  • System.Reflection.PortableExecutable.ManagedPEBuilder

Additional Documentation

Feedback & Contributing

System.Reflection.Metadata is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Showing the top 20 packages that depend on System.Reflection.Metadata.

Packages Downloads
Microsoft.CodeAnalysis.Common
A shared package used by the Microsoft .NET Compiler Platform ("Roslyn"). Do not install this package manually, it will be added as a prerequisite by other packages that require it. More details at https://aka.ms/roslyn-packages This package was built from the source at https://github.com/dotnet/roslyn/commit/e595ee276d14e14bfb3eb323fb57f2aa668bddea
101
System.Diagnostics.StackTrace
Provides the System.Diagnostics.StackTrace class, which allows interaction with local and remote processes. Commonly Used Types: System.Diagnostics.StackFrame System.Diagnostics.StackTrace When using NuGet 3.x this package requires at least version 3.4.
93
System.Diagnostics.FileVersionInfo
Provides the System.Diagnostics.FileVersionInfo class, which allows access to Win32 version resource information for a physical file on disk. Commonly Used Types: System.Diagnostics.FileVersionInfo When using NuGet 3.x this package requires at least version 3.4.
75
System.Diagnostics.StackTrace
Provides the System.Diagnostics.StackTrace class, which allows interaction with local and remote processes. Commonly Used Types: System.Diagnostics.StackFrame System.Diagnostics.StackTrace When using NuGet 3.x this package requires at least version 3.4.
70
System.Diagnostics.FileVersionInfo
Provides the System.Diagnostics.FileVersionInfo class, which allows access to Win32 version resource information for a physical file on disk. Commonly Used Types: System.Diagnostics.FileVersionInfo When using NuGet 3.x this package requires at least version 3.4.
69
Ben.Demystifier
High performance understanding for stack traces (Make error logs more productive)
67
Microsoft.CodeAnalysis.Common
A shared package used by the Microsoft .NET Compiler Platform ("Roslyn"). Do not install this package manually, it will be added as a prerequisite by other packages that require it. More details at https://aka.ms/roslyn-packages This package was built from the source at https://github.com/dotnet/roslyn/commit/7a63d79b60ffb33e919bee8056816f8f449d00ce.
52
Microsoft.CodeAnalysis.Common
A shared package used by the Microsoft .NET Compiler Platform ("Roslyn"). Do not install this package manually, it will be added as a prerequisite by other packages that require it. Supported Platforms: - .NET Framework 4.5 - Windows 8 - Portable Class Libraries
52
Microsoft.CodeAnalysis.Common
A shared package used by the Microsoft .NET Compiler Platform ("Roslyn"). Do not install this package manually, it will be added as a prerequisite by other packages that require it. This package was built from the source at https://github.com/dotnet/roslyn/commit/ec1cde8b77c7bca654888681037f55aa0e62dd19
47
Microsoft.NETCore.App
A set of .NET API's that are included in the default .NET Core application model. 6985b9f6844d51ba1197c3f52aabc7291bb15bc1 When using NuGet 3.x this package requires at least version 3.4.
46
Microsoft.AspNetCore.Diagnostics
ASP.NET Core middleware for exception handling, exception display pages, and diagnostics information. Includes developer exception page middleware, exception handler middleware, runtime info middleware, status code page middleware, and welcome page middleware This package was built from the source code at https://github.com/aspnet/Diagnostics/tree/c802d5ef5fba1ba8dfbcb8c3741af2ba15e9d1aa
46
Microsoft.CodeAnalysis.Common
A shared package used by the Microsoft .NET Compiler Platform ("Roslyn"). Do not install this package manually, it will be added as a prerequisite by other packages that require it. More details at https://aka.ms/roslyn-packages This package was built from the source at https://github.com/dotnet/roslyn/commit/f5ba9f2c61a2fe853dc4913888d40df221539147.
44
Microsoft.CodeAnalysis.Common
A shared package used by the Microsoft .NET Compiler Platform ("Roslyn"). Do not install this package manually, it will be added as a prerequisite by other packages that require it. More details at https://aka.ms/roslyn-packages This package was built from the source at https://github.com/dotnet/roslyn/commit/e873e69306527a0424e97af2985370556f474019
43
Microsoft.CodeAnalysis.Common
A shared package used by the Microsoft .NET Compiler Platform ("Roslyn"). Do not install this package manually, it will be added as a prerequisite by other packages that require it. More details at https://aka.ms/roslyn-packages This package was built from the source at https://github.com/dotnet/roslyn/commit/ae1fff344d46976624e68ae17164e0607ab68b10.
42
Microsoft.CodeAnalysis.Common
A shared package used by the Microsoft .NET Compiler Platform ("Roslyn"). Do not install this package manually, it will be added as a prerequisite by other packages that require it. More details at https://aka.ms/roslyn-packages This package was built from the source at https://github.com/dotnet/roslyn/commit/34fad56309fc96f2af1171df6ea012cbf991c27d.
42
Microsoft.CodeAnalysis.Common
A shared package used by the Microsoft .NET Compiler Platform ("Roslyn"). Do not install this package manually, it will be added as a prerequisite by other packages that require it. More details at https://aka.ms/roslyn-packages This package was built from the source at https://github.com/dotnet/roslyn/commit/ebbf56c257fb4d3128d3487ef525d92e9f94b412.
42
Microsoft.CodeAnalysis.Common
A shared package used by the Microsoft .NET Compiler Platform ("Roslyn"). Do not install this package manually, it will be added as a prerequisite by other packages that require it. More details at https://aka.ms/roslyn-packages This package was built from the source at https://github.com/dotnet/roslyn/commit/fa8e2c9b566e4471a3509fc63d7baca0a2a6d30b.
42
Microsoft.AspNetCore.Hosting
ASP.NET Core hosting infrastructure and startup logic for web applications. This package was built from the source code at https://github.com/aspnet/Hosting/tree/0724e6cde1149ee1a19bfec9c13a2c9327b71213
42
Microsoft.CodeAnalysis.Common
A shared package used by the Microsoft .NET Compiler Platform ("Roslyn"). Do not install this package manually, it will be added as a prerequisite by other packages that require it.
41
Microsoft.CodeAnalysis.Common
A shared package used by the Microsoft .NET Compiler Platform ("Roslyn"). Do not install this package manually, it will be added as a prerequisite by other packages that require it. Supported Platforms: - .NET Framework 4.5 - Windows 8 - Portable Class Libraries
40

https://go.microsoft.com/fwlink/?LinkID=799421

.NET Framework 4.6.2

.NET 8.0

.NET 9.0

  • No dependencies.

.NET Standard 2.0

Version Downloads Last updated
9.0.0 2 11/19/2024
9.0.0-rc.2.24473.5 1 10/13/2024
9.0.0-rc.1.24431.7 1 10/12/2024
9.0.0-preview.7.24405.7 3 08/17/2024
9.0.0-preview.6.24327.7 4 07/12/2024
9.0.0-preview.5.24306.7 2 06/13/2024
9.0.0-preview.4.24266.19 5 05/24/2024
9.0.0-preview.3.24172.9 6 04/16/2024
9.0.0-preview.2.24128.5 4 03/15/2024
9.0.0-preview.1.24080.9 3 03/15/2024
8.0.1 3 10/08/2024
8.0.0 5 12/18/2023
8.0.0-rc.2.23479.6 6 12/19/2023
8.0.0-rc.1.23419.4 3 01/29/2024
8.0.0-preview.7.23375.6 5 08/31/2023
8.0.0-preview.6.23329.7 6 08/27/2023
8.0.0-preview.5.23280.8 4 08/27/2023
8.0.0-preview.4.23259.5 2 08/30/2023
8.0.0-preview.3.23174.8 5 05/19/2023
8.0.0-preview.2.23128.3 37 04/17/2023
8.0.0-preview.1.23110.8 14 08/30/2023
7.0.2 8 08/25/2023
7.0.1 19 06/13/2023
7.0.0 34 04/04/2023
7.0.0-rc.2.22472.3 7 08/28/2023
7.0.0-rc.1.22426.10 20 08/25/2023
7.0.0-preview.7.22375.6 21 08/27/2023
7.0.0-preview.6.22324.4 27 04/08/2023
7.0.0-preview.5.22301.12 22 08/19/2023
7.0.0-preview.4.22229.4 27 04/01/2023
7.0.0-preview.3.22175.4 14 08/25/2023
7.0.0-preview.2.22152.2 24 08/28/2023
7.0.0-preview.1.22076.8 10 08/31/2023
6.0.2 2 11/19/2024
6.0.2-mauipre.1.22102.15 34 04/10/2023
6.0.2-mauipre.1.22054.8 7 08/24/2023
6.0.1 5 06/12/2023
6.0.0 8 06/12/2023
6.0.0-rc.2.21480.5 7 04/04/2023
6.0.0-rc.1.21451.13 28 04/11/2023
6.0.0-preview.7.21377.19 23 05/08/2023
6.0.0-preview.6.21352.12 5 08/24/2023
6.0.0-preview.5.21301.5 13 08/31/2023
6.0.0-preview.4.21253.7 6 08/25/2023
6.0.0-preview.3.21201.4 22 04/04/2023
6.0.0-preview.2.21154.6 50 04/04/2023
6.0.0-preview.1.21102.12 14 08/31/2023
5.0.0 62 12/21/2020
5.0.0-rc.2.20475.5 16 04/10/2023
5.0.0-rc.1.20451.14 22 05/11/2023
5.0.0-preview.8.20407.11 9 08/29/2023
5.0.0-preview.7.20364.11 21 07/26/2023
5.0.0-preview.6.20305.6 16 04/10/2023
5.0.0-preview.5.20278.1 33 08/28/2023
5.0.0-preview.4.20251.6 15 08/26/2023
5.0.0-preview.3.20214.6 40 04/04/2023
5.0.0-preview.2.20160.6 5 08/28/2023
5.0.0-preview.1.20120.5 24 04/03/2023
1.8.1 35 04/09/2023
1.8.0 9 04/01/2023
1.8.0-preview3.19551.4 20 04/09/2023
1.8.0-preview2.19523.17 52 04/04/2023
1.8.0-preview1.19504.10 28 04/02/2023
1.7.0 17 04/26/2023
1.7.0-rc1.19456.4 23 04/01/2023
1.7.0-preview9.19421.4 17 04/08/2023
1.7.0-preview9.19416.11 20 04/03/2023
1.7.0-preview8.19405.3 3 08/28/2023
1.7.0-preview7.19362.9 22 04/05/2023
1.7.0-preview6.19303.8 49 04/11/2023
1.7.0-preview6.19264.9 29 04/02/2023
1.7.0-preview5.19224.8 17 08/26/2023
1.7.0-preview4.19212.13 21 08/25/2023
1.7.0-preview3.19128.7 27 05/02/2023
1.7.0-preview.19073.11 33 06/01/2023
1.7.0-preview.18571.3 30 04/08/2023
1.6.0 74 06/18/2020
1.6.0-rc1 18 07/30/2023
1.6.0-preview2-26406-04 15 08/26/2023
1.6.0-preview1-26216-02 15 04/08/2023
1.5.0 20 11/29/2019
1.5.0-preview2-25405-01 42 04/04/2023
1.5.0-preview1-25305-02 32 05/11/2023
1.4.2 61 12/30/2020
1.4.1 35 04/24/2020
1.4.1-preview1-24530-04 16 08/25/2023
1.4.1-beta-24430-01 5 09/01/2023
1.4.1-beta-24227-04 10 08/29/2023
1.3.0 48 11/26/2019
1.3.0-rc2-24027 19 07/24/2023
1.2.1-beta-23918 23 04/05/2023
1.2.0 22 05/08/2023
1.2.0-rc3-23811 23 05/16/2023
1.2.0-rc2-23826 1 05/18/2023
1.1.1-beta-23516 32 04/16/2023
1.1.0 21 06/13/2023
1.1.0-alpha-00015 7 08/31/2023
1.1.0-alpha-00014 29 04/06/2023
1.1.0-alpha-00012 7 08/28/2023
1.1.0-alpha-00009 19 05/19/2023
1.0.23-beta-23409 19 04/04/2023
1.0.23-beta-23225 24 05/08/2023
1.0.22 8 02/10/2024
1.0.22-beta-23109 6 08/25/2023
1.0.22-beta-23019 9 02/18/2024
1.0.21 13 06/14/2023
1.0.19-rc 19 05/06/2023
1.0.18-beta 27 05/08/2023
1.0.17-beta 38 04/09/2023