Implemented interface member:
method
GetCustomAttributes
System.Reflection.ICustomAttributeProvider.GetCustomAttributes(System.Type, System.Boolean)
4 overrides of GetCustomAttributes
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimeModuleBuilder.cs (1)
489
public override object[]
GetCustomAttributes
(Type attributeType, bool inherit)
src\System\Reflection\RuntimeModule.cs (1)
358
public override object[]
GetCustomAttributes
(Type attributeType, bool inherit)
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingModule.cs (1)
74
public override object[]
GetCustomAttributes
(Type attributeType, bool inherit)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Modules\RoModule.cs (1)
67
public sealed override object[]
GetCustomAttributes
(Type attributeType, bool inherit) => throw new InvalidOperationException(SR.Arg_ReflectionOnlyCA);
3 references to GetCustomAttributes
System.Private.CoreLib (2)
src\System\Attribute.CoreCLR.cs (2)
641
return (Attribute[])element.
GetCustomAttributes
(typeof(Attribute), inherit);
652
return (Attribute[])element.
GetCustomAttributes
(attributeType, inherit);
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingModule.cs (1)
76
return UnderlyingModule.
GetCustomAttributes
(attributeType, inherit);