System.Reflection.Context 9.0.0-rc.1.24431.7
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 .NETCore.
61f5996beb6fc1a89ce6f08e075c834db7b4e63f
When using NuGet 3.x this package requires at least version 3.4.
|
6 |
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.
|
6 |
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NET.
6.0.4 contains .NET Native 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.
|
6 |
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.
|
6 |
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NET.
5.4.0 contains .NET Native 1.7.
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.
|
6 |
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.
|
6 |
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.
|
6 |
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NETCore.
d27b0072a8f6a9655adf31afeed9214a5af9909f
When using NuGet 3.x this package requires at least version 3.4.
|
6 |
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.
|
6 |
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NET.
Contains .NET Native 1.6 plus a fix for an issue that caused MAKEPRI build warnings to be emitted when building app packages for UWP projects.
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.
|
5 |
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NET.
5.2.3 contains .NET Native 1.4 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.2.2 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 2015 Update 3 or later.
When using NuGet 3.x this package requires at least version 3.4.
|
5 |
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.
|
5 |
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NETCore.
fb955066bb607530fd1ab07915579d6f380296e6
When using NuGet 3.x this package requires at least version 3.4.
|
5 |
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.
|
5 |
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.
|
5 |
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.
|
5 |
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NETCore.
6b0dee9970b5ea524dbcd352cd5cbb911b8cf13f
When using NuGet 3.x this package requires at least version 3.4.
|
5 |
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NET.
6.0.1 contains .NET Native 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.
|
5 |
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.
|
5 |
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NET.
5.4.1 contains .NET Native 1.7.
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.
|
5 |
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.