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