What is an equivalent method to `GetCustomAttributes` for .NETCore (Windows 8 Framework)?(.NETCore(Windows 8 Framework)的“GetCustomAttributes的等效方法是什么?)
问题描述
我正在编写一个与 Stack API 接口的应用程序,并且一直在关注 本教程 (尽管旧 API 版本仍然有效).我的问题是,在 Windows 8 商店应用程序中使用它时,我受到 .NETCore 框架的限制,它不支持下面的 GetCustomAttributes
方法:
I'm putting together an app that interfaces with Stack API and have been following this tutorial (although old API version it still works). My problem is that when using this within the Windows 8 Store App I'm contrained by the .NETCore Framework which doesn't support the GetCustomAttributes
method found below:
private static IEnumerable<T> ParseJson<T>(string json) where T : class, new()
{
var type = typeof (T);
var attribute = type.GetCustomAttributes(typeof (WrapperObjectAttribute), false).SingleOrDefault() as WrapperObjectAttribute;
if (attribute == null)
{
throw new InvalidOperationException(
String.Format("{0} type must be decorated with a WrapperObjectAttribute.", type.Name));
}
var jobject = JObject.Parse(json);
var collection = JsonConvert.DeserializeObject<List<T>>(jobject[attribute.WrapperObject].ToString());
return collection;
}
我的问题有两个.GetCustomAttributes
究竟做了什么,在 Windows 8 应用商店应用领域的约束中是否有与此方法等效的方法?
My question is two-fold. What exactly does the GetCustomAttributes
do and is there an equivalent to this method within the constrains of Windows 8 Store App realm?
推荐答案
你需要使用type.GetTypeInfo()
,然后有各种GetCustomAttribute
方法(通过扩展方法),或者有 .CustomAttributes
可以为您提供原始信息(而不是具体化的 Attribute
实例).
You need to use type.GetTypeInfo()
, which then has various GetCustomAttribute
methods (via extension methods), or there is .CustomAttributes
which gives you the raw information (rather than materialized Attribute
instances).
例如:
var attribute = type.GetTypeInfo().GetCustomAttribute<WrapperObjectAttribute>();
if(attribute == null)
{
...
}
...
GetTypeInfo()
对于库作者来说是 .NETCore 的痛点;p
GetTypeInfo()
is the pain of .NETCore for library authors ;p
如果 .GetTypeInfo()
没有出现,则添加 using System.Reflection;
指令.
If .GetTypeInfo()
doesn't appear, then add a using System.Reflection;
directive.
这篇关于.NETCore(Windows 8 Framework)的“GetCustomAttributes"的等效方法是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:.NETCore(Windows 8 Framework)的“GetCustomAttributes"的等效方法是什么?
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 输入按键事件处理程序 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01