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