Zetetic.Chain.ContextBase.this C# (CSharp) Method

this() public method

public this ( string key ) : object
key string
return object
        public virtual object this[string key]
        {
            get
            {
                if (BaseStorage.ContainsKey(key))
                {
                    return BaseStorage[key];
                }
                return null;
            }
            set
            {
                BaseStorage[key] = value;
            }
        }
ContextBase