CachedAttributeGetter<T>
using Newtonsoft.Json.Utilities;
using System;
namespace Newtonsoft.Json.Serialization
{
    internal static class CachedAttributeGetter<T> where T : Attribute
    {
        private static readonly ThreadSafeStore<object, T> TypeAttributeCache = new ThreadSafeStore<object, T>(JsonTypeReflector.GetAttribute<T>);
        public static T GetAttribute(object type)
        {
            return TypeAttributeCache.Get(type);
        }
    }
}