Implemented interface member:
method
GetCustomAttributes
System.Reflection.ICustomAttributeProvider.GetCustomAttributes(System.Boolean)
5 overrides of GetCustomAttributes
Aspire.Dashboard.Tests (1)
AssemblyExtensionsTests.cs (1)
84public override object[] GetCustomAttributes(bool inherit)
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimeAssemblyBuilder.cs (1)
214public override object[] GetCustomAttributes(bool inherit) =>
src\System\Reflection\RuntimeAssembly.cs (1)
324public override object[] GetCustomAttributes(bool inherit)
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingAssembly.cs (1)
50public override object[] GetCustomAttributes(bool inherit)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Assemblies\RoAssembly.cs (1)
209public sealed override object[] GetCustomAttributes(bool inherit) => throw new InvalidOperationException(SR.Arg_ReflectionOnlyCA);
3 references to GetCustomAttributes
Aspire.Dashboard.Tests (1)
AssemblyExtensionsTests.cs (1)
86return base.GetCustomAttributes(inherit);
Microsoft.AspNetCore.InternalTesting (1)
xunit\AspNetTestInvoker.cs (1)
79foreach (var attribute in testClass.Assembly.GetCustomAttributes(inherit: true).OfType<ITestMethodLifecycle>())
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingAssembly.cs (1)
52return UnderlyingAssembly.GetCustomAttributes(inherit);