System.ComponentModel.AttributeProviderAttribute.AttributeProviderAttribute C# (CSharp) Method

AttributeProviderAttribute() public method

public AttributeProviderAttribute ( string typeName, string propertyName ) : System
typeName string
propertyName string
return System
        public AttributeProviderAttribute(string typeName, string propertyName) {
            if (typeName == null) {
                throw new ArgumentNullException("typeName");
            }
            if (propertyName == null) {
                throw new ArgumentNullException("propertyName");
            }

            _typeName = typeName;
			_propertyName = propertyName;
        }

Same methods

AttributeProviderAttribute::AttributeProviderAttribute ( Type type ) : System
AttributeProviderAttribute::AttributeProviderAttribute ( string typeName ) : System
AttributeProviderAttribute