iTextSharp.tool.xml.pipeline.ctx.MapContext.this C# (CSharp) Method

this() public method

public this ( string key ) : object
key string
return object
        public object this[string key]
        {
            get {
                object retval;
                lock (map) {
                    map.TryGetValue(key, out retval);
                }
                return retval;
            }
            set {
                lock (map) {
                    map[key] = value;
                }
            }
        }