System.Reflection.Context 9.0.0-rc.1.24431.7

Prefix Reserved
This is a prerelease version of System.Reflection.Context.
dotnet add package System.Reflection.Context --version 9.0.0-rc.1.24431.7                
NuGet\Install-Package System.Reflection.Context -Version 9.0.0-rc.1.24431.7                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="System.Reflection.Context" Version="9.0.0-rc.1.24431.7" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add System.Reflection.Context --version 9.0.0-rc.1.24431.7                
#r "nuget: System.Reflection.Context, 9.0.0-rc.1.24431.7"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install System.Reflection.Context as a Cake Addin
#addin nuget:?package=System.Reflection.Context&version=9.0.0-rc.1.24431.7&prerelease

// Install System.Reflection.Context as a Cake Tool
#tool nuget:?package=System.Reflection.Context&version=9.0.0-rc.1.24431.7&prerelease                

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.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.
  • .NETStandard 2.1

    • No dependencies.
  • net8.0

    • No dependencies.
  • net9.0

    • No dependencies.

NuGet packages (13)

Showing the top 5 NuGet packages that depend on System.Reflection.Context:

Package 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.

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

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.

More

The core library for the "More" framework.

Gorgon.Core

Contains common core functionality used by the various Gorgon libraries.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on System.Reflection.Context:

Repository Stars
dotnet/dotnet
Home of .NET's Virtual Monolithic Repository which includes all the code needed to build the .NET SDK from source
Version Downloads Last updated
9.0.0-rc.1.24431.7 2,717 9/10/2024
9.0.0-preview.7.24405.7 5,496 8/13/2024
9.0.0-preview.6.24327.7 9,497 7/9/2024
9.0.0-preview.5.24306.7 4,576 6/11/2024
9.0.0-preview.4.24266.19 2,399 5/21/2024
9.0.0-preview.3.24172.9 6,856 4/11/2024
9.0.0-preview.2.24128.5 682 3/12/2024
9.0.0-preview.1.24080.9 10,531 2/13/2024
8.0.0 2,175,505 11/14/2023
8.0.0-rc.2.23479.6 11,621 10/10/2023
8.0.0-rc.1.23419.4 8,623 9/12/2023
8.0.0-preview.7.23375.6 8,367 8/8/2023
8.0.0-preview.6.23329.7 758 7/11/2023
8.0.0-preview.5.23280.8 747 6/13/2023
8.0.0-preview.4.23259.5 9,268 5/16/2023
8.0.0-preview.3.23174.8 19,395 4/11/2023
8.0.0-preview.2.23128.3 4,883 3/14/2023
8.0.0-preview.1.23110.8 7,932 2/21/2023
7.0.0 3,700,601 11/7/2022
7.0.0-rc.2.22472.3 8,838 10/11/2022
7.0.0-rc.1.22426.10 62,140 9/14/2022
7.0.0-preview.7.22375.6 10,244 8/9/2022
7.0.0-preview.6.22324.4 976 7/12/2022
7.0.0-preview.5.22301.12 1,164 6/14/2022
7.0.0-preview.4.22229.4 10,231 5/10/2022
7.0.0-preview.3.22175.4 2,391 4/13/2022
7.0.0-preview.2.22152.2 11,584 3/14/2022
7.0.0-preview.1.22076.8 2,448 2/17/2022
6.0.0 8,181,731 11/8/2021
6.0.0-rc.2.21480.5 4,190 10/12/2021
6.0.0-rc.1.21451.13 7,728 9/14/2021
6.0.0-preview.7.21377.19 2,472 8/10/2021
6.0.0-preview.6.21352.12 1,730 7/14/2021
6.0.0-preview.5.21301.5 5,162 6/15/2021
6.0.0-preview.4.21253.7 20,318 5/24/2021
6.0.0-preview.3.21201.4 7,134 4/8/2021
6.0.0-preview.2.21154.6 7,768 3/11/2021
6.0.0-preview.1.21102.12 2,067 2/12/2021
5.0.0 20,407,629 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.5 8,639 10/13/2020
5.0.0-rc.1.20451.14 4,046 9/14/2020
5.0.0-preview.8.20407.11 7,296 8/25/2020
5.0.0-preview.7.20364.11 11,670 7/21/2020
5.0.0-preview.6.20305.6 3,288 6/25/2020
5.0.0-preview.5.20278.1 3,827 6/10/2020
5.0.0-preview.4.20251.6 7,421 5/18/2020
5.0.0-preview.3.20214.6 26,704 4/23/2020
5.0.0-preview.2.20160.6 655 4/2/2020
5.0.0-preview.1.20120.5 712 3/16/2020
4.7.0 6,402,272 12/3/2019
4.7.0-preview3.19551.4 1,691 11/13/2019
4.7.0-preview2.19523.17 12,812 11/1/2019
4.7.0-preview1.19504.10 9,303 10/15/2019
4.6.0 1,730,980 9/23/2019
4.6.0-rc1.19456.4 4,403 9/16/2019
4.6.0-preview9.19421.4 2,150 9/4/2019
4.6.0-preview9.19416.11 490 9/4/2019
4.6.0-preview8.19405.3 4,799 8/13/2019
4.6.0-preview7.19362.9 4,966 7/23/2019
4.6.0-preview6.19303.8 560 6/12/2019
4.6.0-preview6.19264.9 487 9/4/2019
4.6.0-preview5.19224.8 505 5/6/2019
4.6.0-preview4.19212.13 516 4/18/2019
4.6.0-preview3.19128.7 528 3/6/2019
4.6.0-preview.19073.11 597 1/29/2019
4.6.0-preview.18571.3 648 12/3/2018
4.3.0 166,540 11/15/2016
4.3.0-preview1-24530-04 1,222 10/24/2016
4.0.1 1,436,263 6/27/2016
4.0.1-rc2-24027 3,144 5/16/2016
4.0.1-beta-23516 2,094 11/18/2015
4.0.1-beta-23409 1,152 10/15/2015
4.0.1-beta-23225 2,974 9/2/2015
4.0.0 1,911,225 7/29/2015