internal ElementInformation (ConfigurationElement owner, PropertyInformation propertyInfo)
		{
			this.propertyInfo = propertyInfo;
			this.owner = owner;

			properties = new PropertyInformationCollection ();
			foreach (ConfigurationProperty prop in owner.Properties)
				properties.Add (new PropertyInformation (owner, prop));
		}
Пример #2
0
        internal ElementInformation(ConfigurationElement owner, PropertyInformation propertyInfo)
        {
            this.propertyInfo = propertyInfo;
            this.owner        = owner;

            properties = new PropertyInformationCollection();
            foreach (ConfigurationProperty prop in owner.Properties)
            {
                properties.Add(new PropertyInformation(owner, prop));
            }
        }