6 implementations of GetCustomAttributes
mscorlib (5)
system\reflection\assembly.cs (1)
922public virtual Object[] GetCustomAttributes(Type attributeType, bool inherit)
system\reflection\emit\dynamicmethod.cs (1)
1019Object[] ICustomAttributeProvider.GetCustomAttributes(Type attributeType, bool inherit) {
system\reflection\memberinfo.cs (1)
56public abstract Object[] GetCustomAttributes(Type attributeType, bool inherit);
system\reflection\module.cs (1)
146public virtual Object[] GetCustomAttributes(Type attributeType, bool inherit)
system\reflection\parameterinfo.cs (1)
161public virtual Object[] GetCustomAttributes(Type attributeType, bool inherit)
PresentationFramework (1)
src\Framework\System\Windows\Markup\Baml2006\WpfKnownType.cs (1)
362object[] ICustomAttributeProvider.GetCustomAttributes(Type attributeType, bool inherit)
6 references to GetCustomAttributes
ComSvcConfig (1)
ComplusTypeValidator.cs (1)
316object[] attributes = attributeProvider.GetCustomAttributes(typeof(MarshalAsAttribute), true);
System.Runtime.Serialization (1)
System\Runtime\Serialization\DataContract.cs (1)
1917object[] nsAttributes = customAttribuetProvider.GetCustomAttributes(typeof(ContractNamespaceAttribute), false);
System.ServiceModel (1)
System\ServiceModel\Description\ServiceReflector.cs (1)
446return attrProvider.GetCustomAttributes(attrType, inherit);
System.Xml (3)
System\Xml\Serialization\SoapReflectionImporter.cs (1)
77object[] attrs = provider.GetCustomAttributes(typeof(SoapIncludeAttribute), false);
System\Xml\Serialization\XmlAttributes.cs (1)
172object[] attrs = provider.GetCustomAttributes(attrType, false);
System\Xml\Serialization\XmlReflectionImporter.cs (1)
95object[] attrs = provider.GetCustomAttributes(typeof(XmlIncludeAttribute), false);