SenseNet.ContentRepository.Storage.Caching.AspNetCache.this C# (CSharp) Метод

this() публичный Метод

public this ( string key ) : object
key string
Результат object
        public override object this[string key]
        {
            get
            {
                return _cache[key];
            }
            set
            {
                _cache[key] = value;
            }
        }