Implemented interface members:
method
IsDefined
System.Runtime.InteropServices._Assembly.IsDefined(System.Type, System.Boolean)
method
IsDefined
System.Reflection.ICustomAttributeProvider.IsDefined(System.Type, System.Boolean)
2 overrides of IsDefined
mscorlib (2)
system\reflection\assembly.cs (1)
1665public override bool IsDefined(Type attributeType, bool inherit)
system\reflection\emit\assemblybuilder.cs (1)
1187public override bool IsDefined(Type attributeType, bool inherit)
7 references to IsDefined
mscorlib (1)
system\attribute.cs (1)
800return element.IsDefined(attributeType, false);
System.Activities (2)
Microsoft\VisualBasic\Activities\XamlIntegration\VisualBasicExpressionConverter.cs (2)
207if (assembly.IsDefined(typeof(XmlnsDefinitionAttribute), false) && !assembly.IsDynamic) 248if (assembly.IsDefined(typeof(XmlnsDefinitionAttribute), false) && ! assembly.IsDynamic)
System.Data.Entity (3)
System\Data\Metadata\ObjectItemCollection.cs (2)
84return assembly.IsDefined(typeof(System.Data.Mapping.EntityViewGenerationAttribute), false /*inherit*/); 424if (assembly.IsDefined(typeof(System.Data.Mapping.EntityViewGenerationAttribute), false /*inherit*/))
System\Data\Metadata\ObjectLayer\ObjectItemAttributeAssemblyLoader.cs (1)
745return assembly.IsDefined(typeof(EdmSchemaAttribute), false /*inherit*/);
System.Web (1)
HttpRuntime.cs (1)
2744return assembly.IsDefined(typeof(AllowPartiallyTrustedCallersAttribute), inherit: false);