Aspectacular.RequestCache.Set C# (CSharp) Method

Set() public method

public Set ( string key, object val ) : void
key string
val object
return void
        public void Set(string key, object val)
        {
            lock(HttpContext.Current.Items)
            {
                HttpContext.Current.Items["RequestCache_" + key] = val;
            }
        }