8 references to GetCustomAttributes
PresentationCore (1)
MS\Internal\Resources\ContentFileHelper.cs (1)
57assemblyAttributes = Attribute.GetCustomAttributes(
PresentationFramework (1)
System\Windows\Markup\XmlnsCache.cs (1)
273return Attribute.GetCustomAttributes(asm, attrType);
System.Private.CoreLib (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\CustomAttributeExtensions.cs (1)
95return Attribute.GetCustomAttributes(element, attributeType);
System\Reflection\Attribute.NativeAot.cs (1)
49public static Attribute[] GetCustomAttributes(Assembly element, Type attributeType, bool inherit) => GetCustomAttributes(element, attributeType); // "inherit" is meaningless for modules
System.Xaml (4)
System\Xaml\MS\Impl\XmlNsInfo.cs (4)
180attributes = Attribute.GetCustomAttributes(assembly, typeof(XmlnsDefinitionAttribute)); 268Attribute[] attributes = Attribute.GetCustomAttributes(assembly, typeof(InternalsVisibleToAttribute)); 328Attribute[] attributes = Attribute.GetCustomAttributes(assembly, typeof(XmlnsCompatibleWithAttribute)); 381Attribute[] attributes = Attribute.GetCustomAttributes(assembly, typeof(XmlnsPrefixAttribute));