Flatwhite.WebApi.OutputCacheAttribute.RefreshCache C# (CSharp) Method

RefreshCache() private method

private RefreshCache ( string storedKey ) : void
storedKey string
return void
        private void RefreshCache(string storedKey)
        {
            if (Global.Cache.PhoenixFireCage.ContainsKey(storedKey) && !AutoRefresh && StaleWhileRevalidate > 0)
            {
                Global.Cache.PhoenixFireCage[storedKey].Reborn();
            }
        }