System.Reflection.Context 11.0.0-preview.5.26302.115

About

Provides the CustomReflectionContext class to enable adding or removing custom attributes from reflection objects, or adding dummy properties to those objects, without re-implementing the complete reflection model.

Key Features

  • Create a custom reflection context to control how types and members are presented during reflection.
  • Easily extend or customize the reflection model to fit specialized application needs.

How to Use

Defining a custom Attribute and implement a CustomReflectionContext to add the attribute to specic methods.

using System.Reflection;
using System.Reflection.Context;

[AttributeUsage(AttributeTargets.Method)]
class CustomAttribute : Attribute
{
}

class CustomContext : CustomReflectionContext
{
    // Called whenever the reflection context checks for custom attributes.
    protected override IEnumerable<object> GetCustomAttributes(MemberInfo member, IEnumerable<object> declaredAttributes)
    {
        // Add custom attribute to "ToString" members
        if (member.Name == "ToString")
        {
            yield return new CustomAttribute();
        }

        // Keep existing attributes as well
        foreach (var attr in declaredAttributes)
        {
            yield return attr;
        }
    }
}

Inspecting the string type with both the default and custom reflection context.

Type type = typeof(string);

// Representation of the type in the default reflection context
TypeInfo typeInfo = type.GetTypeInfo();

Console.WriteLine("\"To*\" members and their attributes in the default reflection context");
foreach (MemberInfo memberInfo in typeInfo.DeclaredMembers)
{
    if (memberInfo.Name.StartsWith("To"))
    {
        Console.WriteLine(memberInfo.Name);
        foreach (Attribute attribute in memberInfo.GetCustomAttributes())
        {
            Console.WriteLine($" - {attribute.GetType()}");
        }
    }
}
Console.WriteLine();

// Output:
// "To*" members and their attributes in the default reflection context
// ToCharArray
// ToCharArray
// ToString
// ToString
// ToLower
// ToLower
// ToLowerInvariant
// ToUpper
// ToUpper
// ToUpperInvariant

// Representation of the type in the customized reflection context
CustomContext customContext = new();
TypeInfo customTypeInfo = customContext.MapType(typeInfo);

Console.WriteLine("\"To*\" members and their attributes in the customized reflection context");
foreach (MemberInfo memberInfo in customTypeInfo.DeclaredMembers)
{
    if (memberInfo.Name.StartsWith("To"))
    {
        Console.WriteLine(memberInfo.Name);
        foreach (Attribute attribute in memberInfo.GetCustomAttributes())
        {
            Console.WriteLine($" - {attribute.GetType()}");
        }
    }
}

// Output:
// "To*" members and their attributes in the customized reflection context
// ToCharArray
// ToCharArray
// ToString
//  - CustomAttribute
// ToString
//  - CustomAttribute
// ToLower
// ToLower
// ToLowerInvariant
// ToUpper
// ToUpper
// ToUpperInvariant

Main Types

The main type provided by this library is:

  • System.Reflection.Context.CustomReflectionContext

Additional Documentation

Feedback & Contributing

System.Reflection.Context 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.Context.

Packages Downloads
System.ComponentModel.Composition.Registration
This namespace provides classes that constitute the core of the Managed Extensibility Framework, or MEF. Commonly Used Types: System.ComponentModel.Composition.Registration.RegistrationBuilder System.ComponentModel.Composition.Registration.PartBuilder System.ComponentModel.Composition.Registration.PartBuilder<T> System.ComponentModel.Composition.Registration.ParameterImportBuilder System.ComponentModel.Composition.Registration.ImportBuilder System.ComponentModel.Composition.Registration.ExportBuilder
4
System.ComponentModel.Composition.Registration
This namespace provides classes that constitute the core of the Managed Extensibility Framework, or MEF. Commonly Used Types: System.ComponentModel.Composition.Registration.RegistrationBuilder System.ComponentModel.Composition.Registration.PartBuilder System.ComponentModel.Composition.Registration.PartBuilder<T> System.ComponentModel.Composition.Registration.ParameterImportBuilder System.ComponentModel.Composition.Registration.ImportBuilder System.ComponentModel.Composition.Registration.ExportBuilder When using NuGet 3.x this package requires at least version 3.4.
4
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NETCore. fa5143502b6eb9c1a3291b15d1074e416d5b1ea0 When using NuGet 3.x this package requires at least version 3.4.
3
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NETCore.
3
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NETCore. 1b651b26ca39a8a2b6c090a85b6025565fa46203 When using NuGet 3.x this package requires at least version 3.4.
3
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NETCore. e53154d77e6fad2bb788d160b30e9949a8e37580 When using NuGet 3.x this package requires at least version 3.4.
3
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NETCore. 451925e4ed3f9ef704260c1a6af1e729b8419fe2 When using NuGet 3.x this package requires at least version 3.4.
3
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NETCore. 4a86d78425de41ee21f6b83b1625db768b6b2db6 When using NuGet 3.x this package requires at least version 3.4.
3
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NETCore. ca07fc7c0b5878b3fc4381cf081be89c15373f52 When using NuGet 3.x this package requires at least version 3.4.
3
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NETCore. e21f17714e08e2fc20ddeaec9af0569cdff082dc When using NuGet 3.x this package requires at least version 3.4.
3

.NET 10.0

  • No dependencies.

.NET 11.0

  • No dependencies.

.NET Standard 2.0

  • No dependencies.

.NET Standard 2.1

  • No dependencies.

Version Downloads Last updated
11.0.0-preview.5.26302.115 1 06/14/2026
11.0.0-preview.4.26230.115 1 06/14/2026
11.0.0-preview.3.26207.106 1 06/16/2026
11.0.0-preview.2.26159.112 2 03/23/2026
11.0.0-preview.1.26104.118 2 02/20/2026
10.0.9 2 06/15/2026
10.0.8 1 06/16/2026
10.0.7 1 06/15/2026
10.0.6 1 06/15/2026
10.0.5 2 03/23/2026
10.0.4 2 03/23/2026
10.0.3 2 02/20/2026
10.0.2 2 03/23/2026
10.0.1 2 03/23/2026
10.0.0 2 03/23/2026
10.0.0-rc.2.25502.107 2 03/22/2026
10.0.0-rc.1.25451.107 2 03/22/2026
10.0.0-preview.7.25380.108 2 03/23/2026
10.0.0-preview.6.25358.103 2 03/23/2026
10.0.0-preview.5.25277.114 1 04/02/2026
10.0.0-preview.4.25258.110 2 03/23/2026
10.0.0-preview.3.25171.5 1 04/02/2026
10.0.0-preview.2.25163.2 1 04/03/2026
10.0.0-preview.1.25080.5 2 03/23/2026
9.0.17 2 06/14/2026
9.0.16 1 06/15/2026
9.0.15 1 06/16/2026
9.0.14 2 03/23/2026
9.0.13 2 02/20/2026
9.0.12 2 03/23/2026
9.0.11 2 03/23/2026
9.0.10 2 03/23/2026
9.0.9 2 02/03/2026
9.0.8 3 02/03/2026
9.0.7 3 02/03/2026
9.0.6 3 02/03/2026
9.0.5 3 02/03/2026
9.0.4 2 02/03/2026
9.0.3 3 02/03/2026
9.0.2 3 02/03/2026
9.0.1 2 03/22/2026
9.0.0 3 02/03/2026
9.0.0-rc.2.24473.5 1 04/02/2026
9.0.0-rc.1.24431.7 1 04/06/2026
9.0.0-preview.7.24405.7 2 02/20/2026
9.0.0-preview.6.24327.7 1 04/03/2026
9.0.0-preview.5.24306.7 1 04/03/2026
9.0.0-preview.4.24266.19 1 04/03/2026
9.0.0-preview.3.24172.9 0 04/11/2024
9.0.0-preview.2.24128.5 1 04/05/2026
9.0.0-preview.1.24080.9 1 04/04/2026
8.0.0 3 02/03/2026
8.0.0-rc.2.23479.6 1 04/02/2026
8.0.0-rc.1.23419.4 1 04/02/2026
8.0.0-preview.7.23375.6 0 08/08/2023
8.0.0-preview.6.23329.7 1 04/03/2026
8.0.0-preview.5.23280.8 2 03/23/2026
8.0.0-preview.4.23259.5 0 05/16/2023
8.0.0-preview.3.23174.8 0 04/11/2023
8.0.0-preview.2.23128.3 2 03/23/2026
8.0.0-preview.1.23110.8 2 03/23/2026
7.0.0 3 02/03/2026
7.0.0-rc.2.22472.3 2 03/23/2026
7.0.0-rc.1.22426.10 2 02/20/2026
7.0.0-preview.7.22375.6 1 04/06/2026
7.0.0-preview.6.22324.4 1 04/03/2026
7.0.0-preview.5.22301.12 1 04/05/2026
7.0.0-preview.4.22229.4 2 03/23/2026
7.0.0-preview.3.22175.4 0 04/13/2022
7.0.0-preview.2.22152.2 2 03/23/2026
7.0.0-preview.1.22076.8 0 02/17/2022
6.0.0 3 02/03/2026
6.0.0-rc.2.21480.5 1 04/07/2026
6.0.0-rc.1.21451.13 1 04/02/2026
6.0.0-preview.7.21377.19 0 08/10/2021
6.0.0-preview.6.21352.12 1 04/03/2026
6.0.0-preview.5.21301.5 1 04/02/2026
6.0.0-preview.4.21253.7 1 04/06/2026
6.0.0-preview.3.21201.4 1 04/02/2026
6.0.0-preview.2.21154.6 2 02/20/2026
6.0.0-preview.1.21102.12 2 02/20/2026
5.0.0 2 02/03/2026
5.0.0-rc.2.20475.5 1 04/05/2026
5.0.0-rc.1.20451.14 1 04/05/2026
5.0.0-preview.8.20407.11 1 04/03/2026
5.0.0-preview.7.20364.11 1 04/05/2026
5.0.0-preview.6.20305.6 2 02/20/2026
5.0.0-preview.5.20278.1 0 06/10/2020
5.0.0-preview.4.20251.6 0 05/18/2020
5.0.0-preview.3.20214.6 0 04/23/2020
5.0.0-preview.2.20160.6 2 03/23/2026
5.0.0-preview.1.20120.5 2 03/23/2026
4.7.0 3 02/03/2026
4.7.0-preview3.19551.4 1 04/05/2026
4.7.0-preview2.19523.17 1 04/04/2026
4.7.0-preview1.19504.10 1 04/03/2026
4.6.0 3 02/03/2026
4.6.0-rc1.19456.4 0 09/16/2019
4.6.0-preview9.19421.4 1 04/04/2026
4.6.0-preview9.19416.11 1 04/02/2026
4.6.0-preview8.19405.3 1 04/03/2026
4.6.0-preview7.19362.9 1 04/04/2026
4.6.0-preview6.19303.8 1 04/02/2026
4.6.0-preview6.19264.9 1 04/03/2026
4.6.0-preview5.19224.8 0 05/06/2019
4.6.0-preview4.19212.13 1 04/02/2026
4.6.0-preview3.19128.7 4 02/20/2026
4.6.0-preview.19073.11 0 01/29/2019
4.6.0-preview.18571.3 2 02/20/2026
4.3.0 3 02/03/2026
4.3.0-preview1-24530-04 1 04/03/2026
4.0.1 3 02/03/2026
4.0.1-rc2-24027 2 03/23/2026
4.0.1-beta-23516 0 11/18/2015
4.0.1-beta-23409 2 03/23/2026
4.0.1-beta-23225 2 03/23/2026
4.0.0 3 02/03/2026