8 implementations of IsDefined
PresentationFramework (1)
System\Windows\Markup\Baml2006\WpfKnownType.cs (1)
415bool ICustomAttributeProvider.IsDefined(Type attributeType, bool inherit)
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Reflection\Assembly.cs (1)
111public virtual bool IsDefined(Type attributeType, bool inherit) { throw NotImplemented.ByDesign; }
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\EmptyCAHolder.cs (1)
14bool ICustomAttributeProvider.IsDefined(Type attributeType, bool inherit) => false;
src\libraries\System.Private.CoreLib\src\System\Reflection\MemberInfo.cs (1)
34public abstract bool IsDefined(Type attributeType, bool inherit);
src\libraries\System.Private.CoreLib\src\System\Reflection\Module.cs (1)
32public virtual bool IsDefined(Type attributeType, bool inherit) { throw NotImplemented.ByDesign; }
src\libraries\System.Private.CoreLib\src\System\Reflection\ParameterInfo.cs (1)
35public virtual bool IsDefined(Type attributeType, bool inherit)
System.Xaml.Tests (2)
System\Xaml\XamlMemberTests.cs (1)
2353public bool IsDefined(Type attributeType, bool inherit)
System\Xaml\XamlTypeTests.cs (1)
5277public bool IsDefined(Type attributeType, bool inherit)
5 references to IsDefined
System.ComponentModel.Composition (2)
Microsoft\Internal\AttributeServices.cs (2)
33return attributeProvider.IsDefined(typeof(T), false); 38return attributeProvider.IsDefined(typeof(T), inherit);
System.ServiceModel.Primitives (2)
System\ServiceModel\Description\TypeLoader.cs (2)
824if (attrProvider.IsDefined(typeof(XmlSerializerFormatAttribute), false)) 828if (attrProvider.IsDefined(typeof(DataContractFormatAttribute), false))
System.Xaml (1)
System\Xaml\Schema\Reflector.cs (1)
46return CustomAttributeProvider.IsDefined(attributeType, false);