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