System.Configuration.ConfigurationElement.this C# (CSharp) Method

this() protected method

protected this ( String propertyName ) : Object
propertyName String
return Object
        protected internal Object this[String propertyName] {
            get {
                ConfigurationProperty prop = Properties[propertyName];
                if (prop == null) {
                    prop = Properties[DefaultCollectionPropertyName];
                    if (prop.ProvidedName != propertyName) {
                        return null;
                    }
                }
                return this[prop];
            }
            set {
                Debug.Assert(Properties.Contains(propertyName), "Properties.Contains(propertyName)");
                SetPropertyValue(Properties[propertyName], value, false);// Do not ignore locks!!!
            }
        }

Same methods

ConfigurationElement::this ( ConfigurationProperty prop ) : Object