Aspectacular.CacheAspect.BuildMethodCacheKeyVerySlowly C# (CSharp) Method

BuildMethodCacheKeyVerySlowly() protected method

protected BuildMethodCacheKeyVerySlowly ( ) : string
return string
        protected string BuildMethodCacheKeyVerySlowly()
        {
            string mainMethodSignature = this.Proxy.InterceptedCallMetaData.GetMethodSignature(ParamValueOutputOptions.SlowInternalValue);
            if(this.Proxy.PostProcessingCallMetadata == null)
                return mainMethodSignature;

            string prostProcessingMethodSignature = this.Proxy.PostProcessingCallMetadata.GetMethodSignature(ParamValueOutputOptions.SlowInternalValue);
            string combined = string.Format("{0}+{1}", mainMethodSignature, prostProcessingMethodSignature);

            return combined;
        }