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\RuntimeAssemblyBuilder.cs (1)
220public override bool IsDefined(Type attributeType, bool inherit) =>
src\System\Reflection\RuntimeAssembly.cs (1)
339public override bool IsDefined(Type attributeType, bool inherit)
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingAssembly.cs (1)
60public override bool IsDefined(Type attributeType, bool inherit)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Assemblies\RoAssembly.cs (1)
211public 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)
740return element.IsDefined(attributeType, false);
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingAssembly.cs (1)
62return UnderlyingAssembly.IsDefined(attributeType, inherit);