Aspectacular.CacheAspect.Step_5_FinallyAfterMethodExecution C# (CSharp) 메소드

Step_5_FinallyAfterMethodExecution() 공개 메소드

public Step_5_FinallyAfterMethodExecution ( bool interceptedCallSucceeded ) : void
interceptedCallSucceeded bool
리턴 void
        public override void Step_5_FinallyAfterMethodExecution(bool interceptedCallSucceeded)
        {
            if(!this.Proxy.CanCacheReturnedResult)
                return;

            if(this.ValueFoundInCache)
                return;

            this.SaveValueToCache();
        }