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

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

private PropertyInformation ( ConfigurationElement owner, ConfigurationProperty property ) : System.ComponentModel
owner ConfigurationElement
property ConfigurationProperty
Результат System.ComponentModel
		internal PropertyInformation (ConfigurationElement owner, ConfigurationProperty property)
		{
			if (owner == null)
				throw new ArgumentNullException ("owner");
			if (property == null)
				throw new ArgumentNullException ("property");
			this.owner = owner;
			this.property = property;
		}