Aspectacular.CacheAspect.Step_2_BeforeTryingMethodExec C# (CSharp) Method

Step_2_BeforeTryingMethodExec() public method

public Step_2_BeforeTryingMethodExec ( ) : void
return void
        public override void Step_2_BeforeTryingMethodExec()
        {
            this.LogInformationWithKey("Cache provider type", ((object)this.Cache2 ?? this.Cache).GetType().FormatCSharp());
            this.LogInformationData("Method is cacheable", this.Proxy.CanCacheReturnedResult);

            if(!this.Proxy.CanCacheReturnedResult)
                return;

            this.LogParametersWithValues();

            this.GetValueFromCacheIfItsThere();
        }