Inheritance: System.Collections.Specialized.NameObjectCollectionBase
Example #1
0
        protected ConfigurationElement()
        {
            Values = new ConfigurationValues();

            // Set the per-type validator ( this will actually have an effect only for an attributed model elements )
            // Note that in the case where the property bag fot this.GetType() has not yet been created
            // the validator for this instance will get applied in ApplyValidatorsRecursive ( see this.get_Properties )
            ApplyValidator(this);
        }
Example #2
0
 internal InvalidValuesCollection(ConfigurationValues values)
 {
     _values = values;
 }
Example #3
0
 internal ConfigurationElementsCollection(ConfigurationValues values)
 {
     _values = values;
 }
 internal InvalidValuesCollection(ConfigurationValues values) {
     _values = values;
 }
 internal ConfigurationElementsCollection(ConfigurationValues values) {
     _values = values;
 }
Example #6
0
 /// <summary>
 /// Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationElement"/> class.
 /// </summary>
 protected ConfigurationElement()
 {
     this._values = new ConfigurationValues();
       ConfigurationElement.ApplyValidator(this);
 }