12 references to Attributes
System.ComponentModel.TypeConverter (12)
System\ComponentModel\AttributeCollection.cs (11)
117public int Count => Attributes.Length; 122public virtual Attribute this[int index] => Attributes[index]; 152return Attributes[index]; 172int count = Attributes.Length; 175Attribute attribute = Attributes[i]; 187Attribute attribute = Attributes[i]; 291public IEnumerator GetEnumerator() => Attributes.GetEnumerator(); 299for (int i = 0; i < Attributes.Length; i++) 301if (Attributes[i].Match(attribute)) 342public void CopyTo(Array array, int index) => Array.Copy(Attributes, 0, array, index, Attributes.Length);
System\ComponentModel\ReflectTypeDescriptionProvider.ReflectedTypeData.cs (1)
110attributes.AddRange(TypeDescriptor.GetAttributes(iface).Attributes);