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.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.
61
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.
57
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.
54
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.
52
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NET. 5.3.1 contains .NET Native 1.6 plus the following two fixes: - Fixed an issue that caused DataContractJsonSerializer to fail to serialize any [DataContract] type whose default constructor is not public. - Fixed a regression in 5.3.0 where 4 Libraries were accidently no longer referenced by default - System.Collections.NonGeneric - System.Collections.Specialized - System.Threading.Overlapped - System.Xml.XmlDocument When using Visual Studio this package requires Visual Studio 2017 or later. When using NuGet 3.x this package requires at least version 3.4.
50
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.
50
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.
49
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.
48
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.
48
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.
47
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.
47
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NETCore.
45
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.
45
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NET. 6.0.5 contains .NET native compilers 1.7.3 and 2.0. When using Visual Studio this package requires Visual Studio 2017 or later. When using NuGet 3.x this package requires at least version 3.4.
45
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.
45
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.
45

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-preview.4.25258.110 6 05/17/2025
10.0.0-preview.3.25171.5 10 04/17/2025
10.0.0-preview.2.25163.2 8 03/25/2025
10.0.0-preview.1.25080.5 11 02/27/2025
9.0.5 4 05/17/2025
9.0.4 7 04/13/2025
9.0.3 11 03/25/2025
9.0.2 12 02/22/2025
9.0.1 18 01/20/2025
9.0.0 22 11/13/2024
9.0.0-rc.2.24473.5 21 10/13/2024
9.0.0-rc.1.24431.7 21 09/11/2024
9.0.0-preview.7.24405.7 25 08/16/2024
9.0.0-preview.6.24327.7 28 07/11/2024
9.0.0-preview.5.24306.7 24 06/14/2024
9.0.0-preview.4.24266.19 26 06/14/2024
9.0.0-preview.3.24172.9 26 04/12/2024
9.0.0-preview.2.24128.5 35 03/19/2024
9.0.0-preview.1.24080.9 27 02/20/2024
8.0.0 41 11/25/2023
8.0.0-rc.2.23479.6 34 10/19/2023
8.0.0-rc.1.23419.4 33 09/24/2023
8.0.0-preview.7.23375.6 52 08/23/2023
8.0.0-preview.6.23329.7 44 07/15/2023
8.0.0-preview.5.23280.8 36 07/24/2023
8.0.0-preview.4.23259.5 39 07/01/2023
8.0.0-preview.3.23174.8 30 08/05/2023
8.0.0-preview.2.23128.3 43 08/22/2023
8.0.0-preview.1.23110.8 43 07/18/2023
7.0.0 43 08/18/2023
7.0.0-rc.2.22472.3 34 08/08/2023
7.0.0-rc.1.22426.10 51 07/14/2023
7.0.0-preview.7.22375.6 30 08/23/2022
7.0.0-preview.6.22324.4 42 07/19/2023
7.0.0-preview.5.22301.12 43 08/11/2023
7.0.0-preview.4.22229.4 34 08/08/2023
7.0.0-preview.3.22175.4 34 07/21/2023
7.0.0-preview.2.22152.2 45 07/23/2023
7.0.0-preview.1.22076.8 46 08/04/2023
6.0.2-mauipre.1.22102.15 33 08/09/2023
6.0.2-mauipre.1.22054.8 46 08/10/2023
6.0.0 36 04/14/2022
6.0.0-rc.2.21480.5 37 08/08/2023
6.0.0-rc.1.21451.13 46 08/05/2023
6.0.0-preview.7.21377.19 47 07/20/2023
6.0.0-preview.6.21352.12 33 08/11/2023
6.0.0-preview.5.21301.5 35 07/22/2023
6.0.0-preview.4.21253.7 37 07/23/2023
6.0.0-preview.3.21201.4 34 07/18/2023
6.0.0-preview.2.21154.6 35 06/20/2023
6.0.0-preview.1.21102.12 43 07/15/2023
5.0.0 38 08/17/2023
5.0.0-rc.2.20475.5 33 08/16/2023
5.0.0-rc.1.20451.14 41 08/08/2023
5.0.0-preview.8.20407.11 36 12/02/2022
5.0.0-preview.7.20364.11 31 08/14/2023
5.0.0-preview.6.20305.6 34 07/22/2023
5.0.0-preview.5.20278.1 35 08/10/2023
5.0.0-preview.4.20251.6 39 11/12/2022
5.0.0-preview.3.20214.6 49 08/05/2023
5.0.0-preview.2.20160.6 43 11/27/2022
5.0.0-preview.1.20120.5 33 07/17/2023
4.7.0 68 08/04/2023
4.7.0-preview3.19551.4 41 08/10/2023
4.7.0-preview2.19523.17 39 08/11/2023
4.7.0-preview1.19504.10 47 07/14/2023
4.6.0 37 07/15/2023
4.6.0-rc1.19456.4 46 07/22/2023
4.6.0-preview9.19421.4 42 08/11/2023
4.6.0-preview9.19416.11 42 08/08/2023
4.6.0-preview8.19405.3 38 04/11/2023
4.6.0-preview7.19362.9 37 10/01/2023
4.6.0-preview6.19303.8 44 08/06/2023
4.6.0-preview6.19264.9 35 12/07/2022
4.6.0-preview5.19224.8 31 08/03/2023
4.6.0-preview4.19212.13 29 07/22/2023
4.6.0-preview3.19128.7 39 07/24/2023
4.6.0-preview.19073.11 42 12/09/2022
4.6.0-preview.18571.3 43 07/14/2023
4.3.0 34 08/14/2023
4.3.0-preview1-24530-04 28 11/10/2022
4.0.1 37 09/24/2023
4.0.1-rc2-24027 33 08/23/2023
4.0.1-beta-23516 40 07/18/2023
4.0.1-beta-23409 36 07/18/2023
4.0.1-beta-23225 41 10/28/2022
4.0.0 35 07/17/2023