Implemented interface member:
method
GetCustomAttributes
System.Reflection.ICustomAttributeProvider.GetCustomAttributes(System.Type, System.Boolean)
2 overrides of GetCustomAttributes
mscorlib (2)
system\reflection\emit\modulebuilder.cs (1)
811public override Object[] GetCustomAttributes(Type attributeType, bool inherit)
system\reflection\module.cs (1)
1017public override Object[] GetCustomAttributes(Type attributeType, bool inherit)
4 references to GetCustomAttributes
mscorlib (2)
system\attribute.cs (2)
686return (Attribute[])element.GetCustomAttributes(typeof(Attribute), inherit); 701return (Attribute[])element.GetCustomAttributes(attributeType, inherit);
System.Data (2)
fx\src\bid\inc\cs\bidPrivateBase.cs (2)
847object[] attrColl = mod.GetCustomAttributes(typeof(BidIdentityAttribute), true); 904object[] attrColl = mod.GetCustomAttributes(typeof(BidMetaTextAttribute), true);