Implemented interface member:
method
GetCustomAttributes
System.Reflection.ICustomAttributeProvider.GetCustomAttributes(System.Type, System.Boolean)
8 overrides of GetCustomAttributes
Aspire.Dashboard.Tests (1)
AssemblyExtensionsTests.cs (1)
89public override object[] GetCustomAttributes(Type attributeType, bool inherit)
Microsoft.AspNetCore.Mvc.Core.Test (1)
ApplicationParts\RelatedAssemblyPartTest.cs (1)
93public override object[] GetCustomAttributes(Type attributeType, bool inherit)
Microsoft.AspNetCore.Mvc.Razor.Test (1)
ApplicationParts\RazorCompiledItemFeatureProviderTest.cs (1)
169public override object[] GetCustomAttributes(Type attributeType, bool inherit)
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimeAssemblyBuilder.cs (1)
217public override object[] GetCustomAttributes(Type attributeType, bool inherit) =>
src\System\Reflection\RuntimeAssembly.cs (1)
329public override object[] GetCustomAttributes(Type attributeType, bool inherit)
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingAssembly.cs (1)
45public override object[] GetCustomAttributes(Type attributeType, bool inherit)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Assemblies\RoAssembly.cs (1)
210public sealed override object[] GetCustomAttributes(Type attributeType, bool inherit) => throw new InvalidOperationException(SR.Arg_ReflectionOnlyCA);
System.Xaml.Tests (1)
Common\CustomAssembly.cs (1)
36public override object[] GetCustomAttributes(Type attributeType, bool inherit)
25 references to GetCustomAttributes
aspire (1)
Utils\VersionHelper.cs (1)
13.GetCustomAttributes(typeof(System.Reflection.AssemblyInformationalVersionAttribute), false)
Microsoft.AspNetCore.InternalTesting (1)
xunit\AspNetTestAssemblyRunner.cs (1)
42.GetCustomAttributes(typeof(AssemblyFixtureAttribute), false)
Microsoft.Maui (1)
Platform\ReflectionExtensions.cs (1)
14 return assembly.GetCustomAttributes(attrType, true);
Microsoft.Maui.Controls.Build.Tasks (1)
XmlTypeExtensions.cs (1)
43 foreach (XmlnsDefinitionAttribute attribute in assembly.GetCustomAttributes(typeof(XmlnsDefinitionAttribute), false))
PresentationFramework (3)
System\Windows\Markup\BamlReader.cs (1)
1866foreach (XmlnsDefinitionAttribute xmlnsDef in asm.GetCustomAttributes(typeof(XmlnsDefinitionAttribute), true))
System\Windows\Markup\Primitives\MarkupWriter.cs (2)
1561foreach (XmlnsPrefixAttribute prefix in assembly.GetCustomAttributes(typeof(XmlnsPrefixAttribute), true)) 1567Object[] customAttrs = assembly.GetCustomAttributes(typeof(XmlnsDefinitionAttribute), true);
System.Configuration.ConfigurationManager (2)
System\Configuration\ClientConfigPaths.cs (2)
298object[] attrs = exeAssembly.GetCustomAttributes(typeof(AssemblyCompanyAttribute), false); 304attrs = exeAssembly.GetCustomAttributes(typeof(AssemblyProductAttribute), false);
System.Diagnostics.TraceSource (1)
System\Diagnostics\SwitchAttribute.cs (1)
54object[] attribs = assembly.GetCustomAttributes(typeof(SwitchAttribute), false);
System.Private.CoreLib (2)
src\System\Attribute.CoreCLR.cs (2)
710return (Attribute[])element.GetCustomAttributes(attributeType, inherit); 722return (Attribute[])element.GetCustomAttributes(typeof(Attribute), inherit);
System.Private.Xml (1)
System\Xml\Serialization\Compilation.cs (1)
269object[] attrs = serializer.GetCustomAttributes(typeof(XmlSerializerVersionAttribute), false);
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingAssembly.cs (1)
47return UnderlyingAssembly.GetCustomAttributes(attributeType, inherit);
System.Windows.Forms (6)
System\Windows\Forms\Application.cs (3)
175object[] attrs = entryAssembly.GetCustomAttributes(typeof(AssemblyCompanyAttribute), false); 467object[] attrs = entryAssembly.GetCustomAttributes(typeof(AssemblyProductAttribute), inherit: false); 517object[] attrs = entryAssembly.GetCustomAttributes(typeof(AssemblyInformationalVersionAttribute), false);
System\Windows\Forms\Control.ControlVersionInfo.cs (3)
33object[] attrs = _owner.GetType().Module.Assembly.GetCustomAttributes(typeof(AssemblyCompanyAttribute), false); 80object[] attrs = _owner.GetType().Module.Assembly.GetCustomAttributes(typeof(AssemblyProductAttribute), false); 128object[] attrs = _owner.GetType().Module.Assembly.GetCustomAttributes(typeof(AssemblyInformationalVersionAttribute), false);
System.Windows.Forms.Design (2)
System\Drawing\BitmapSelector.cs (1)
72assembly.GetCustomAttributes(attributeType, inherit: false).Length > 0;
System\Drawing\Design\ToolboxItem.cs (1)
585object[] companyattrs = type.Assembly.GetCustomAttributes(typeof(AssemblyCompanyAttribute), true);
System.Windows.Forms.IntegrationTests.Common (1)
TestHelpers.cs (1)
37.GetCustomAttributes(typeof(Runtime.Versioning.TargetFrameworkAttribute), false)
System.Xaml.Tests (1)
Common\CustomAssembly.cs (1)
47return DelegatingAssembly.GetCustomAttributes(attributeType, inherit);
Xunit.NetCore.Extensions (1)
AssemblyFixtureSupport\XunitTestAssemblyRunnerWithAssemblyFixture.cs (1)
38.GetCustomAttributes(typeof(AssemblyFixtureAttribute), false)