System.Configuration.PropertyInformationCollection.PropertyInformationCollection C# (CSharp) Метод

PropertyInformationCollection() приватный Метод

private PropertyInformationCollection ( ConfigurationElement thisElement ) : System
thisElement ConfigurationElement
Результат System
        internal PropertyInformationCollection(ConfigurationElement thisElement) : base(StringComparer.Ordinal) {
            ThisElement = thisElement;
            foreach (ConfigurationProperty prop in ThisElement.Properties) {
                if (prop.Name != ThisElement.ElementTagName) {                    
                    BaseAdd(prop.Name, new PropertyInformation(thisElement, prop.Name));
                }
            }
            IsReadOnly = true;
        }