Implemented interface members:
method
GetCustomAttributes
System.Reflection.ICustomAttributeProvider.GetCustomAttributes(System.Type, System.Boolean)
method
GetCustomAttributes
System.Runtime.InteropServices._Assembly.GetCustomAttributes(System.Type, System.Boolean)
2 overrides of GetCustomAttributes
mscorlib (2)
system\reflection\assembly.cs (1)
1651public override Object[] GetCustomAttributes(Type attributeType, bool inherit)
system\reflection\emit\assemblybuilder.cs (1)
1182public override Object[] GetCustomAttributes(Type attributeType, bool inherit)
45 references to GetCustomAttributes
mscorlib (5)
system\attribute.cs (2)
765return (Attribute[])element.GetCustomAttributes(attributeType, inherit); 779return (Attribute[])element.GetCustomAttributes(typeof(Attribute), inherit);
system\resources\resourcemanager.cs (1)
890Object[] attrs = a.GetCustomAttributes(typeof(SatelliteContractVersionAttribute), false);
system\runtime\interopservices\registrationservices.cs (2)
149Object[] aPIAAttrs = assembly.GetCustomAttributes(typeof(PrimaryInteropAssemblyAttribute), false); 206Object[] aPIAAttrs = assembly.GetCustomAttributes(typeof(PrimaryInteropAssemblyAttribute),false);
PresentationFramework (4)
src\Framework\MS\Internal\AppModel\AssemblyFilter.cs (1)
68object[] aptca = a.GetCustomAttributes(typeof(AllowPartiallyTrustedCallersAttribute), false);
src\Framework\System\Windows\Markup\BamlReader.cs (1)
1876foreach (XmlnsDefinitionAttribute xmlnsDef in asm.GetCustomAttributes(typeof(XmlnsDefinitionAttribute), true))
src\Framework\System\Windows\Markup\Primitives\MarkupWriter.cs (2)
1581foreach (XmlnsPrefixAttribute prefix in assembly.GetCustomAttributes(typeof(XmlnsPrefixAttribute), true)) 1587Object[] customAttrs = assembly.GetCustomAttributes(typeof(XmlnsDefinitionAttribute), true);
System (4)
compmod\microsoft\win32\SystemEvents.cs (3)
1073object[] attrs = entryAssembly.GetCustomAttributes(typeof(AssemblyCompanyAttribute), false); 1123object[] attrs = entryAssembly.GetCustomAttributes(typeof(AssemblyProductAttribute), false); 1173object[] attrs = entryAssembly.GetCustomAttributes(typeof(AssemblyInformationalVersionAttribute), false);
compmod\system\diagnostics\SwitchAttribute.cs (1)
57 object[] attribs = assembly.GetCustomAttributes(typeof(SwitchAttribute), false);
System.Activities (1)
Microsoft\VisualBasic\Activities\XamlIntegration\VisualBasicExpressionConverter.cs (1)
265XmlnsDefinitionAttribute[] attributes = (XmlnsDefinitionAttribute[])assembly.GetCustomAttributes(typeof(XmlnsDefinitionAttribute), false);
System.Configuration (3)
System\Configuration\ClientConfigPaths.cs (2)
455object[] attrs = exeAssembly.GetCustomAttributes(typeof(AssemblyCompanyAttribute), false); 463attrs = exeAssembly.GetCustomAttributes(typeof(AssemblyProductAttribute), false);
System\Configuration\TypeUtil.cs (1)
245Object[] attrs = assembly.GetCustomAttributes(
System.Data.Entity (2)
System\Data\Mapping\StorageMappingItemCollection.ViewDictionary.cs (1)
375object[] viewGenAttributes = assembly.GetCustomAttributes(typeof(System.Data.Mapping.EntityViewGenerationAttribute), false /*inherit*/);
System\Data\Metadata\ObjectLayer\ObjectItemAttributeAssemblyLoader.cs (1)
208foreach (EdmRelationshipAttribute roleAttribute in SourceAssembly.GetCustomAttributes(typeof(EdmRelationshipAttribute), false /*inherit*/))
System.Drawing (2)
commonui\System\Drawing\BitmapSelector.cs (1)
95var attr = assembly.GetCustomAttributes(attrType, false);
commonui\System\Drawing\Design\ToolboxItem.cs (1)
737object[] companyattrs = type.Assembly.GetCustomAttributes(typeof(AssemblyCompanyAttribute), true);
System.Management (1)
Instrumentation\Attributes.cs (1)
141Object [] rg = assembly.GetCustomAttributes(typeof(InstrumentedAttribute), false);
System.Runtime.Serialization (1)
System\Runtime\Serialization\DataContract.cs (1)
2432InternalsVisibleToAttribute[] internalsVisibleAttributes = (InternalsVisibleToAttribute[])assembly.GetCustomAttributes(typeof(InternalsVisibleToAttribute), false);
System.ServiceModel.Internals (1)
System\Runtime\PartialTrustHelpers.cs (1)
97return assembly.GetCustomAttributes(aptca, false).Length > 0;
System.Web (2)
Compilation\BuildManager.cs (1)
932attributes = (PreApplicationStartMethodAttribute[])assembly.GetCustomAttributes(typeof(PreApplicationStartMethodAttribute), inherit: true);
Util\AssemblyUtil.cs (1)
16(AssemblyFileVersionAttribute[])assembly.GetCustomAttributes(typeof(AssemblyFileVersionAttribute), false);
System.Web.Entity.Design (1)
parent\parent\parent\parent\InternalApis\NDP_FX\inc\BitmapSelector.cs (1)
95var attr = assembly.GetCustomAttributes(attrType, false);
System.Web.Extensions (6)
Handlers\ScriptResourceHandler.cs (1)
182object[] nrlas = assembly.GetCustomAttributes(typeof(NeutralResourcesLanguageAttribute), false);
UI\ScriptResourceInfo.cs (3)
101in assembly.GetCustomAttributes(typeof(ScriptResourceAttribute), false)) { 121object[] attrs = assembly.GetCustomAttributes(typeof(WebResourceAttribute), false); 130attrs = assembly.GetCustomAttributes(typeof(ScriptResourceAttribute), false);
UI\WebResourceUtil.cs (2)
41object[] attrs = assembly.GetCustomAttributes(typeof(WebResourceAttribute), false); 67object[] attrs = assembly.GetCustomAttributes(typeof(WebResourceAttribute), false);
System.Windows.Forms (7)
parent\parent\parent\InternalApis\NDP_FX\inc\BitmapSelector.cs (1)
95var attr = assembly.GetCustomAttributes(attrType, false);
winforms\Managed\System\WinForms\Application.cs (3)
270object[] attrs = entryAssembly.GetCustomAttributes(typeof(AssemblyCompanyAttribute), false); 499object[] attrs = entryAssembly.GetCustomAttributes(typeof(AssemblyProductAttribute), false); 563object[] attrs = entryAssembly.GetCustomAttributes(typeof(AssemblyInformationalVersionAttribute), false);
winforms\Managed\System\WinForms\Control.cs (3)
20148object[] attrs = owner.GetType().Module.Assembly.GetCustomAttributes(typeof(AssemblyCompanyAttribute), false); 20190object[] attrs = owner.GetType().Module.Assembly.GetCustomAttributes(typeof(AssemblyProductAttribute), false); 20233object[] attrs = owner.GetType().Module.Assembly.GetCustomAttributes(typeof(AssemblyInformationalVersionAttribute), false);
System.Workflow.Activities (1)
Rules\RuleValidation.cs (1)
3416object[] objAttrs = assembly.GetCustomAttributes(extensionAttribute, false);
System.Workflow.ComponentModel (3)
AuthoringOM\Serializer\WorkflowMarkupSerializerMapping.cs (3)
299object[] xmlnsDefinitions = assembly.GetCustomAttributes(typeof(XmlnsDefinitionAttribute), true); 355object[] xmlnsDefinitions = type.Assembly.GetCustomAttributes(typeof(XmlnsDefinitionAttribute), true); 429object[] xmlnsPrefixes = assembly.GetCustomAttributes(typeof(XmlnsPrefixAttribute), true);
System.Xml (1)
System\Xml\Serialization\Compilation.cs (1)
261object[] attrs = serializer.GetCustomAttributes(typeof(XmlSerializerVersionAttribute), false);