コード例 #1
0
        public static object GetCustom(string key, bool slide = true, bool slideAsync = true)
        {
            var value = UnlockedStore.Get(key, slide, slideAsync);

            return(value);
        }
コード例 #2
0
 public static void SetCustom(string key, object value, TimeSpan?expire = null, bool async = true)
 {
     UnlockedStore.Set(key, value, expire, async);
 }