//-------------------------------------------------------------------------- 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)); }
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; } }
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" ); }
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; } }