System.Reflection.Context 10.0.0-preview.4.25258.110

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
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NETCore. 2c481f1d5b480b23fbc1359c38be9771913065ca When using NuGet 3.x this package requires at least version 3.4.
42
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NETCore. 88067cf8b2eb87d30282885fb438f27aaf52cf89 When using NuGet 3.x this package requires at least version 3.4.
41
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
38
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NETCore. d67bd83a075b8b10cb95810568073c1a3211f28b When using NuGet 3.x this package requires at least version 3.4.
38
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NETCore. 61f5996beb6fc1a89ce6f08e075c834db7b4e63f When using NuGet 3.x this package requires at least version 3.4.
37
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
36
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NETCore. 0800a16c103242451e71cb033fa7fb968288f7f8 When using NuGet 3.x this package requires at least version 3.4.
36
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.
36
Microsoft.Windows.Compatibility
This Windows Compatibility Pack provides access to APIs that were previously available only for .NET Framework. It can be used from both .NET as well as .NET Standard.
36
Microsoft.Windows.Compatibility
This Windows Compatibility Pack provides access to APIs that were previously available only for .NET Framework. It can be used from both .NET as well as .NET Standard.
35
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
35
Microsoft.Windows.Compatibility
This Windows Compatibility Pack provides access to APIs that were previously available only for .NET Framework. It can be used from both .NET Core as well as .NET Standard. When using NuGet 3.x this package requires at least version 3.4.
35

.NET 8.0

  • No dependencies.

.NET 9.0

  • No dependencies.

.NET 10.0

  • No dependencies.

.NET Standard 2.0

  • No dependencies.

.NET Standard 2.1

  • No dependencies.

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