Esempio n. 1
0
        //--------------------------------------------------------------------------


        private String getCacheKey(IActionCache actionCache, MvcContext ctx)
        {
            if (actionCache == null)
            {
                return(null);
            }
            if (ctx.HttpMethod.Equals("GET") == false)
            {
                return(null);
            }
            return(actionCache.GetCacheKey(ctx, ctx.route.action));
        }
Esempio n. 2
0
        private void initCacheKey(IActionCache actionCache, MvcContext ctx)
        {
            if (actionCache == null)
            {
                return;
            }
            if (ctx.HttpMethod.Equals("GET") == false)
            {
                return;
            }

            _cacheKey = actionCache.GetCacheKey(ctx, _actionName);
            if (strUtil.HasText(_cacheKey))
            {
                _isActionCache = true;
            }
        }
Esempio n. 3
0
 private String getCacheKey( IActionCache actionCache, MvcContext ctx )
 {
     if (actionCache == null) return null;
     if (ctx.HttpMethod.Equals( "GET" ) == false) return null;
     return actionCache.GetCacheKey( ctx, "Layout" );
 }
Esempio n. 4
0
        private void initCacheKey( IActionCache actionCache, MvcContext ctx )
        {
            if (actionCache == null) return ;
            if (ctx.HttpMethod.Equals( "GET" ) == false) return ;

            _cacheKey = actionCache.GetCacheKey( ctx, _actionName );
            if (strUtil.HasText( _cacheKey )) {
                _isActionCache = true;
            }
        }