9 references to GetCustomAttributes
System.ComponentModel.TypeConverter (2)
System\ComponentModel\ReflectTypeDescriptionProvider.cs (2)
1113attrs = Attribute.GetCustomAttributes(type, typeof(Attribute), inherit: false); 1141attrs = Attribute.GetCustomAttributes(member, typeof(Attribute), inherit: false);
System.Composition.Convention (1)
System\Composition\Convention\PartConventionBuilder.cs (1)
606Attribute[] attributes = Attribute.GetCustomAttributes(ci, typeof(ImportingConstructorAttribute), false);
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\StackTrace.cs (1)
425return Attribute.GetCustomAttributes(memberInfo, attributeType, inherit);
src\libraries\System.Private.CoreLib\src\System\Reflection\CustomAttributeExtensions.cs (1)
129return Attribute.GetCustomAttributes(element, attributeType, inherit);
src\System\Attribute.CoreCLR.cs (4)
42attributes = GetCustomAttributes(baseProp, type, false); 146attributes = GetCustomAttributes(baseEvent, type, false); 447return GetCustomAttributes(element, attributeType, true); 512Attribute[] attrib = GetCustomAttributes(element, attributeType, inherit);