System.Reflection.Context 10.0.0-preview.7.25380.108

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.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.
95
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.
100
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.
111
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.
96
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.
98
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.
111
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
94
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
98
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
108
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
111
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
112
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.
93
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.
101
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.
102
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.
105
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.
107
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.
112
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.
114

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

.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
10.0.0 6 11/15/2025
10.0.0-rc.2.25502.107 7 10/25/2025
10.0.0-rc.1.25451.107 7 09/22/2025
10.0.0-preview.7.25380.108 5 09/23/2025
10.0.0-preview.6.25358.103 7 09/21/2025
10.0.0-preview.5.25277.114 8 09/23/2025
10.0.0-preview.4.25258.110 10 05/19/2025
10.0.0-preview.3.25171.5 10 04/13/2025
10.0.0-preview.2.25163.2 11 03/28/2025
10.0.0-preview.1.25080.5 12 02/28/2025
9.0.11 5 11/15/2025
9.0.10 7 10/21/2025
9.0.9 8 09/21/2025
9.0.8 8 09/22/2025
9.0.7 11 09/23/2025
9.0.6 11 09/22/2025
9.0.5 9 05/19/2025
9.0.4 12 04/09/2025
9.0.3 26 03/29/2025
9.0.2 27 02/28/2025
9.0.1 21 01/18/2025
9.0.0 23 11/22/2024
9.0.0-rc.2.24473.5 19 10/16/2024
9.0.0-rc.1.24431.7 29 09/11/2024
9.0.0-preview.7.24405.7 23 08/16/2024
9.0.0-preview.6.24327.7 22 07/12/2024
9.0.0-preview.5.24306.7 22 06/16/2024
9.0.0-preview.4.24266.19 26 05/22/2024
9.0.0-preview.3.24172.9 30 04/19/2024
9.0.0-preview.2.24128.5 22 03/14/2024
9.0.0-preview.1.24080.9 25 03/11/2024
8.0.0 41 11/16/2023
8.0.0-rc.2.23479.6 32 10/15/2023
8.0.0-rc.1.23419.4 26 09/17/2023
8.0.0-preview.7.23375.6 47 09/10/2023
8.0.0-preview.6.23329.7 39 09/17/2023
8.0.0-preview.5.23280.8 36 07/02/2023
8.0.0-preview.4.23259.5 27 07/02/2023
8.0.0-preview.3.23174.8 63 04/14/2023
8.0.0-preview.2.23128.3 54 03/30/2023
8.0.0-preview.1.23110.8 60 02/28/2023
7.0.0 48 12/16/2022
7.0.0-rc.2.22472.3 114 10/15/2022
7.0.0-rc.1.22426.10 103 09/21/2022
7.0.0-preview.7.22375.6 34 09/12/2022
7.0.0-preview.6.22324.4 46 09/23/2022
7.0.0-preview.5.22301.12 87 10/15/2022
7.0.0-preview.4.22229.4 67 09/26/2022
7.0.0-preview.3.22175.4 74 09/25/2022
7.0.0-preview.2.22152.2 32 09/24/2022
7.0.0-preview.1.22076.8 109 09/24/2022
6.0.2-mauipre.1.22102.15 56 10/15/2022
6.0.2-mauipre.1.22054.8 33 09/23/2022
6.0.0 121 09/26/2022
6.0.0-rc.2.21480.5 65 09/23/2022
6.0.0-rc.1.21451.13 40 09/25/2022
6.0.0-preview.7.21377.19 90 09/23/2022
6.0.0-preview.6.21352.12 63 09/26/2022
6.0.0-preview.5.21301.5 102 09/26/2022
6.0.0-preview.4.21253.7 87 09/27/2022
6.0.0-preview.3.21201.4 60 09/23/2022
6.0.0-preview.2.21154.6 123 09/24/2022
6.0.0-preview.1.21102.12 41 09/23/2022
5.0.0 85 09/22/2022
5.0.0-rc.2.20475.5 55 10/15/2022
5.0.0-rc.1.20451.14 54 09/23/2022
5.0.0-preview.8.20407.11 101 09/21/2022
5.0.0-preview.7.20364.11 116 09/22/2022
5.0.0-preview.6.20305.6 67 09/24/2022
5.0.0-preview.5.20278.1 48 09/27/2022
5.0.0-preview.4.20251.6 55 09/22/2022
5.0.0-preview.3.20214.6 107 10/15/2022
5.0.0-preview.2.20160.6 50 09/21/2022
5.0.0-preview.1.20120.5 106 09/25/2022
4.7.0 117 09/22/2022
4.7.0-preview3.19551.4 55 10/15/2022
4.7.0-preview2.19523.17 75 09/26/2022
4.7.0-preview1.19504.10 111 09/23/2022
4.6.0 70 09/27/2022
4.6.0-rc1.19456.4 95 09/26/2022
4.6.0-preview9.19421.4 40 10/15/2022
4.6.0-preview9.19416.11 80 09/25/2022
4.6.0-preview8.19405.3 51 09/22/2022
4.6.0-preview7.19362.9 110 09/22/2022
4.6.0-preview6.19303.8 80 09/26/2022
4.6.0-preview6.19264.9 61 09/24/2022
4.6.0-preview5.19224.8 107 09/24/2022
4.6.0-preview4.19212.13 48 09/26/2022
4.6.0-preview3.19128.7 99 10/15/2022
4.6.0-preview.19073.11 39 09/25/2022
4.6.0-preview.18571.3 102 09/26/2022
4.3.0 86 09/27/2022
4.3.0-preview1-24530-04 40 09/23/2022
4.0.1 75 09/23/2022
4.0.1-rc2-24027 109 10/15/2022
4.0.1-beta-23516 69 09/22/2022
4.0.1-beta-23409 35 09/23/2022
4.0.1-beta-23225 29 09/24/2022
4.0.0 134 09/25/2022