System.Net.Cache.RequestCacheValidator.RevalidateCache C# (CSharp) Method

RevalidateCache() protected abstract method

protected abstract RevalidateCache ( ) : CacheValidationStatus
return CacheValidationStatus
        protected internal abstract CacheValidationStatus RevalidateCache();
        //

Usage Example

        //
        private CacheValidationStatus RevalidateCache()
        {
            CacheValidationStatus result = _Validator.RevalidateCache();

            _Validator.SetValidationStatus(result);

            if (Logging.On)
            {
                Logging.PrintInfo(Logging.RequestCache, SR.GetString(SR.net_log_cache_result, "RevalidateCache()", result.ToString()));
            }
            return(result);
        }