Implemented interface member:
method
IsDefined
System.Reflection.ICustomAttributeProvider.IsDefined(System.Type, System.Boolean)
4 overrides of IsDefined
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimeModuleBuilder.cs (1)
494public override bool IsDefined(Type attributeType, bool inherit)
src\System\Reflection\RuntimeModule.cs (1)
368public override bool IsDefined(Type attributeType, bool inherit)
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingModule.cs (1)
129public override bool IsDefined(Type attributeType, bool inherit)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Modules\RoModule.cs (1)
68public sealed override bool IsDefined(Type attributeType, bool inherit) => throw new InvalidOperationException(SR.Arg_ReflectionOnlyCA);
2 references to IsDefined
System.Private.CoreLib (1)
src\System\Attribute.CoreCLR.cs (1)
670return element.IsDefined(attributeType, false);
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingModule.cs (1)
131return UnderlyingModule.IsDefined(attributeType, inherit);