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