Sage.CacheWrapper.this C# (CSharp) Method

this() public method

Gets or sets the cache item at the specified key.
public this ( string key ) : object
key string The key of the item to get.
return object
        public object this[string key]
        {
            get
            {
                return this.Get(key);
            }
        }