3 references to GetCustomAttribute
System.ComponentModel.TypeConverter (1)
System\ComponentModel\LicenseManager.cs (1)
280LicenseProviderAttribute? attr = (LicenseProviderAttribute?)Attribute.GetCustomAttribute(type, typeof(LicenseProviderAttribute), false);
System.Private.CoreLib (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\CustomAttributeExtensions.cs (1)
47return Attribute.GetCustomAttribute(element, attributeType, inherit);
System\Reflection\Attribute.NativeAot.cs (1)
21public static Attribute GetCustomAttribute(MemberInfo element, Type attributeType) => GetCustomAttribute(element, attributeType, inherit: true);