Stack APIとインターフェイスするアプリをまとめており、このチュートリアルに従っています(ただし、古いAPIバージョンでも機能します)。私の問題は、Windows 8ストアアプリ内でこれを使用すると、GetCustomAttributes
以下の方法をサポートしていない.NETCoreフレームワークに制約されることです。
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;
}
私の質問は2つあります。正確には何GetCustomAttributes
をしますか?Windows 8ストアアプリレルムの制約内でこのメソッドに相当するものはありますか?