Apache.Shiro.Cache.ImmutableProxiedCache.this C# (CSharp) 메소드

this() 공개 메소드

public this ( object key ) : object
key object
리턴 object
        public object this[object key]
        {
            get
            {
                return _delegate[key];
            }
            set
            {
                throw new NotSupportedException();
            }
        }