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;
        }