Implemented interface member:
method
GetCustomAttributes
System.Reflection.ICustomAttributeProvider.GetCustomAttributes(System.Boolean)
4 overrides of GetCustomAttributes
Aspire.Dashboard.Tests (1)
AssemblyExtensionsTests.cs (1)
84
public override object[]
GetCustomAttributes
(bool inherit)
System.Private.CoreLib (1)
System\Reflection\Runtime\General\LegacyCustomAttributeApis.cs (1)
31
public sealed override object[]
GetCustomAttributes
(bool inherit) => CustomAttributeExtensions.GetCustomAttributes(this).ToArray(); // inherit is meaningless for Assemblies
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingAssembly.cs (1)
50
public override object[]
GetCustomAttributes
(bool inherit)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Assemblies\RoAssembly.cs (1)
208
public sealed override object[]
GetCustomAttributes
(bool inherit) => throw new InvalidOperationException(SR.Arg_ReflectionOnlyCA);
2 references to GetCustomAttributes
Aspire.Dashboard.Tests (1)
AssemblyExtensionsTests.cs (1)
86
return base.
GetCustomAttributes
(inherit);
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingAssembly.cs (1)
52
return UnderlyingAssembly.
GetCustomAttributes
(inherit);