我正在整理一个与 Stack API 接口的应用程序,并且一直在关注本教程(尽管旧 API 版本仍然有效)。我的问题是,在 Windows 8 Store App 中使用它时,我受到不支持以下方法的 .NETCore Framework 的限制GetCustomAttributes
:
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 应用商店应用领域的约束下,究竟该做什么以及是否有与此方法等效的方法?