System.Reflection.Context 9.0.0

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
38
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.
25
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
22
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
21
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.
21
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
20
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
19
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.
18
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.
18
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NET. 5.4.2 contains .NET Native 1.7. This updates 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.
18
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.
17
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NET. 5.2.4 contains .NET Native 1.4 plus the following fix: - Updated the WCF packages which contain bug fixes. When using Visual Studio this package requires Visual Studio 2015 Update 3 or later. When using NuGet 3.x this package requires at least version 3.4.
16
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.
16
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.
16
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NETCore. 09dd6cf2fe48d7e23628671deb819105218171c9 When using NuGet 3.x this package requires at least version 3.4.
15
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.
15
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
15

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

.NET 8.0

  • No dependencies.

.NET 9.0

  • No dependencies.

.NET Standard 2.0

  • No dependencies.

.NET Standard 2.1

  • No dependencies.

Version Downloads Last updated
9.0.0 1 11/18/2024
9.0.0-rc.2.24473.5 1 10/09/2024
9.0.0-rc.1.24431.7 4 09/19/2024
9.0.0-preview.7.24405.7 4 08/20/2024
9.0.0-preview.6.24327.7 5 07/11/2024
9.0.0-preview.5.24306.7 5 06/15/2024
9.0.0-preview.4.24266.19 6 05/24/2024
9.0.0-preview.3.24172.9 7 04/14/2024
9.0.0-preview.2.24128.5 5 03/14/2024
9.0.0-preview.1.24080.9 3 03/14/2024
8.0.0 13 02/10/2024
8.0.0-rc.2.23479.6 15 02/12/2024
8.0.0-rc.1.23419.4 8 11/07/2023
8.0.0-preview.7.23375.6 10 02/10/2024
8.0.0-preview.6.23329.7 13 11/06/2023
8.0.0-preview.5.23280.8 12 08/09/2023
8.0.0-preview.4.23259.5 20 08/09/2023
8.0.0-preview.3.23174.8 9 02/12/2024
8.0.0-preview.2.23128.3 7 08/31/2023
8.0.0-preview.1.23110.8 17 08/28/2023
7.0.0 15 06/13/2023
7.0.0-rc.2.22472.3 9 08/24/2023
7.0.0-rc.1.22426.10 12 08/27/2023
7.0.0-preview.7.22375.6 34 08/28/2023
7.0.0-preview.6.22324.4 8 08/28/2023
7.0.0-preview.5.22301.12 5 08/26/2023
7.0.0-preview.4.22229.4 26 08/23/2023
7.0.0-preview.3.22175.4 5 08/28/2023
7.0.0-preview.2.22152.2 9 08/26/2023
7.0.0-preview.1.22076.8 8 08/29/2023
6.0.2-mauipre.1.22102.15 3 06/26/2024
6.0.2-mauipre.1.22054.8 6 08/28/2023
6.0.0 8 06/13/2023
6.0.0-rc.2.21480.5 12 08/29/2023
6.0.0-rc.1.21451.13 6 10/12/2021
6.0.0-preview.7.21377.19 9 08/28/2023
6.0.0-preview.6.21352.12 24 07/13/2023
6.0.0-preview.5.21301.5 2 08/30/2023
6.0.0-preview.4.21253.7 14 08/25/2023
6.0.0-preview.3.21201.4 7 08/29/2023
6.0.0-preview.2.21154.6 17 07/28/2023
6.0.0-preview.1.21102.12 24 10/26/2021
5.0.0 41 12/30/2020
5.0.0-rc.2.20475.5 16 08/30/2023
5.0.0-rc.1.20451.14 10 08/28/2023
5.0.0-preview.8.20407.11 3 08/26/2023
5.0.0-preview.7.20364.11 19 07/14/2023
5.0.0-preview.6.20305.6 3 08/25/2023
5.0.0-preview.5.20278.1 3 08/24/2023
5.0.0-preview.4.20251.6 5 08/28/2023
5.0.0-preview.3.20214.6 24 08/30/2023
5.0.0-preview.2.20160.6 7 08/25/2023
5.0.0-preview.1.20120.5 15 07/12/2023
4.7.0 6 06/12/2023
4.7.0-preview3.19551.4 17 08/31/2023
4.7.0-preview2.19523.17 25 08/21/2023
4.7.0-preview1.19504.10 10 08/26/2023
4.6.0 7 06/13/2023
4.6.0-rc1.19456.4 4 08/30/2023
4.6.0-preview9.19421.4 7 08/27/2023
4.6.0-preview9.19416.11 38 08/05/2023
4.6.0-preview8.19405.3 22 08/28/2023
4.6.0-preview7.19362.9 24 07/18/2023
4.6.0-preview6.19303.8 43 06/01/2023
4.6.0-preview6.19264.9 23 07/13/2023
4.6.0-preview5.19224.8 3 08/27/2023
4.6.0-preview4.19212.13 15 08/01/2023
4.6.0-preview3.19128.7 16 05/28/2023
4.6.0-preview.19073.11 5 08/25/2023
4.6.0-preview.18571.3 11 08/29/2023
4.3.0 8 06/12/2023
4.3.0-preview1-24530-04 8 08/28/2023
4.0.1 16 06/13/2023
4.0.1-rc2-24027 28 08/09/2023
4.0.1-beta-23516 14 08/27/2023
4.0.1-beta-23409 5 08/26/2023
4.0.1-beta-23225 15 08/28/2023
4.0.0 16 11/13/2023