System.ComponentModel.CustomTypeDescriptor.GetAttributes C# (CSharp) Method

GetAttributes() public method

public GetAttributes ( ) : AttributeCollection
return AttributeCollection
        public virtual AttributeCollection GetAttributes()
        {
            if (_parent != null)
            {
                return _parent.GetAttributes();
            }

            return AttributeCollection.Empty;
        }