6 implementations of GetCustomAttributes
mscorlib (5)
system\reflection\assembly.cs (1)
916public virtual Object[] GetCustomAttributes(bool inherit)
system\reflection\emit\dynamicmethod.cs (1)
1023Object[] ICustomAttributeProvider.GetCustomAttributes(bool inherit) {
system\reflection\memberinfo.cs (1)
54public abstract Object[] GetCustomAttributes(bool inherit);
system\reflection\module.cs (1)
141public virtual Object[] GetCustomAttributes(bool inherit)
system\reflection\parameterinfo.cs (1)
156public virtual Object[] GetCustomAttributes(bool inherit)
PresentationFramework (1)
src\Framework\System\Windows\Markup\Baml2006\WpfKnownType.cs (1)
357object[] ICustomAttributeProvider.GetCustomAttributes(bool inherit)
3 references to GetCustomAttributes
System.Web.Extensions (1)
UI\AssemblyCache.cs (1)
90foreach (Attribute attribute in attributeProvider.GetCustomAttributes(inherit: false)) {
System.Xml (2)
System\Xml\Serialization\SoapAttributes.cs (1)
45object[] attrs = provider.GetCustomAttributes(false);
System\Xml\Serialization\XmlAttributes.cs (1)
94object[] attrs = provider.GetCustomAttributes(false);