System.Reflection.Context 11.0.0-rc.1.26425.128

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 .NET. 5.3.0 contains .NET Native 1.6 with lots of great improvements, including addressing over 100 customer reported issues since .NET Native 1.4. 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.
157
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.
198
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NET. Contains .NET Native 1.6. 5.3.5 updated the WCF NuGet packages which contain bug fixes. 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.
154
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.
200
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NETCore. 0eed6b77c75c73f8488abf7b00294e1ac0648320 When using NuGet 3.x this package requires at least version 3.4.
160
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.
161
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NETCore. 1c2987745619225a9812dfc27c0d11976d93dd47 When using NuGet 3.x this package requires at least version 3.4.
153
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.
152
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.
164
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.
193
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.
166
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NETCore. 7eb07205b77f5657893a906fe517d7b91e713fe7 When using NuGet 3.x this package requires at least version 3.4.
160
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.
164
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NETCore. 935b094e7e828daaf0e0395c827d7b5e5b60d8d6 When using NuGet 3.x this package requires at least version 3.4.
150
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NETCore. ba72270a849171e96fb2927d33357c56944d05ba When using NuGet 3.x this package requires at least version 3.4.
164
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.
167
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.
183
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.
150
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.
165
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NETCore. f86bbf112832fd62bbe9d1fd75ca64bbdc1a34f7 When using NuGet 3.x this package requires at least version 3.4.
168

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

.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-rc.1.26425.128 1 09/08/2026
11.0.0-preview.7.26381.103 13 08/12/2026
11.0.0-preview.6.26359.118 21 07/18/2026
11.0.0-preview.5.26302.115 20 06/09/2026
11.0.0-preview.4.26230.115 42 05/13/2026
11.0.0-preview.3.26207.106 44 04/14/2026
11.0.0-preview.2.26159.112 41 03/11/2026
11.0.0-preview.1.26104.118 42 02/11/2026
10.0.12 0 09/08/2026
10.0.11 11 08/15/2026
10.0.10 20 07/17/2026
10.0.9 28 06/09/2026
10.0.8 32 05/13/2026
10.0.7 34 04/21/2026
10.0.6 41 04/14/2026
10.0.5 39 03/12/2026
10.0.4 43 03/11/2026
10.0.3 39 02/11/2026
10.0.2 50 01/13/2026
10.0.1 77 12/10/2025
10.0.0 92 11/12/2025
10.0.0-rc.2.25502.107 79 10/15/2025
10.0.0-rc.1.25451.107 103 09/09/2025
10.0.0-preview.7.25380.108 103 08/13/2025
10.0.0-preview.6.25358.103 116 07/16/2025
10.0.0-preview.5.25277.114 123 06/08/2025
10.0.0-preview.4.25258.110 107 05/15/2025
10.0.0-preview.3.25171.5 135 04/11/2025
10.0.0-preview.2.25163.2 116 04/02/2025
10.0.0-preview.1.25080.5 117 04/02/2025
9.0.20 0 09/08/2026
9.0.19 10 08/15/2026
9.0.18 19 07/17/2026
9.0.17 23 06/09/2026
9.0.16 28 05/13/2026
9.0.15 40 04/14/2026
9.0.14 36 03/11/2026
9.0.13 41 02/11/2026
9.0.12 45 01/13/2026
9.0.11 87 11/12/2025
9.0.10 98 10/14/2025
9.0.9 89 09/09/2025
9.0.8 119 08/05/2025
9.0.7 107 07/09/2025
9.0.6 136 06/12/2025
9.0.5 129 05/16/2025
9.0.4 121 04/11/2025
9.0.3 123 03/31/2025
9.0.2 131 03/31/2025
9.0.1 142 03/31/2025
9.0.0 140 11/14/2024
9.0.0-rc.2.24473.5 120 10/22/2024
9.0.0-rc.1.24431.7 106 09/20/2024
9.0.0-preview.7.24405.7 114 08/30/2024
9.0.0-preview.6.24327.7 119 07/23/2024
9.0.0-preview.5.24306.7 132 07/23/2024
9.0.0-preview.4.24266.19 141 07/23/2024
9.0.0-preview.3.24172.9 134 07/23/2024
9.0.0-preview.2.24128.5 124 07/23/2024
9.0.0-preview.1.24080.9 135 07/23/2024
8.0.0 139 07/23/2024
8.0.0-rc.2.23479.6 134 07/23/2024
8.0.0-rc.1.23419.4 132 07/23/2024
8.0.0-preview.7.23375.6 136 07/23/2024
8.0.0-preview.6.23329.7 111 07/23/2024
8.0.0-preview.5.23280.8 134 07/23/2024
8.0.0-preview.4.23259.5 135 07/23/2024
8.0.0-preview.3.23174.8 125 07/23/2024
8.0.0-preview.2.23128.3 164 07/23/2024
8.0.0-preview.1.23110.8 142 07/23/2024
7.0.0 132 07/23/2024
7.0.0-rc.2.22472.3 129 07/23/2024
7.0.0-rc.1.22426.10 149 07/23/2024
7.0.0-preview.7.22375.6 133 07/23/2024
7.0.0-preview.6.22324.4 145 07/23/2024
7.0.0-preview.5.22301.12 131 07/23/2024
7.0.0-preview.4.22229.4 126 07/23/2024
7.0.0-preview.3.22175.4 127 07/23/2024
7.0.0-preview.2.22152.2 135 07/23/2024
7.0.0-preview.1.22076.8 136 07/23/2024
6.0.0 135 07/23/2024
6.0.0-rc.2.21480.5 127 07/23/2024
6.0.0-rc.1.21451.13 132 07/23/2024
6.0.0-preview.7.21377.19 132 07/23/2024
6.0.0-preview.6.21352.12 116 07/23/2024
6.0.0-preview.5.21301.5 118 07/23/2024
6.0.0-preview.4.21253.7 143 07/23/2024
6.0.0-preview.3.21201.4 146 07/23/2024
6.0.0-preview.2.21154.6 127 07/23/2024
6.0.0-preview.1.21102.12 134 07/23/2024
5.0.0 124 07/23/2024
5.0.0-rc.2.20475.5 124 07/23/2024
5.0.0-rc.1.20451.14 120 07/23/2024
5.0.0-preview.8.20407.11 128 07/23/2024
5.0.0-preview.7.20364.11 145 07/23/2024
5.0.0-preview.6.20305.6 147 07/23/2024
5.0.0-preview.5.20278.1 135 07/23/2024
5.0.0-preview.4.20251.6 128 07/23/2024
5.0.0-preview.3.20214.6 133 07/23/2024
5.0.0-preview.2.20160.6 135 07/23/2024
5.0.0-preview.1.20120.5 129 07/23/2024
4.7.0 125 07/23/2024
4.7.0-preview3.19551.4 130 07/23/2024
4.7.0-preview2.19523.17 124 07/23/2024
4.7.0-preview1.19504.10 125 07/23/2024
4.6.0 139 07/23/2024
4.6.0-rc1.19456.4 139 07/23/2024
4.6.0-preview9.19421.4 133 07/23/2024
4.6.0-preview9.19416.11 144 07/23/2024
4.6.0-preview8.19405.3 161 07/23/2024
4.6.0-preview7.19362.9 136 07/23/2024
4.6.0-preview6.19303.8 128 07/23/2024
4.6.0-preview6.19264.9 144 07/23/2024
4.6.0-preview5.19224.8 126 07/23/2024
4.6.0-preview4.19212.13 140 07/23/2024
4.6.0-preview3.19128.7 147 07/23/2024
4.6.0-preview.19073.11 145 07/23/2024
4.6.0-preview.18571.3 134 07/23/2024
4.3.0 146 07/23/2024
4.3.0-preview1-24530-04 129 07/23/2024
4.0.1 144 07/23/2024
4.0.1-rc2-24027 146 07/23/2024
4.0.1-beta-23516 130 07/23/2024
4.0.1-beta-23409 146 07/23/2024
4.0.1-beta-23225 139 07/23/2024
4.0.0 179 07/23/2024