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

AttributeProviderAttribute() public method

public AttributeProviderAttribute ( Type type ) : System
type System.Type
return System
        public AttributeProviderAttribute(Type type)
        {
            if (type == null)
            {
                throw new ArgumentNullException("type");
            }

            _typeName = type.AssemblyQualifiedName;
        }

Same methods

AttributeProviderAttribute::AttributeProviderAttribute ( string typeName ) : System
AttributeProviderAttribute::AttributeProviderAttribute ( string typeName, string propertyName ) : System
AttributeProviderAttribute