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