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)
1665
public override bool
IsDefined
(Type attributeType, bool inherit)
system\reflection\emit\assemblybuilder.cs (1)
1187
public override bool
IsDefined
(Type attributeType, bool inherit)
7 references to IsDefined
mscorlib (1)
system\attribute.cs (1)
800
return element.
IsDefined
(attributeType, false);
System.Activities (2)
Microsoft\VisualBasic\Activities\XamlIntegration\VisualBasicExpressionConverter.cs (2)
207
if (assembly.
IsDefined
(typeof(XmlnsDefinitionAttribute), false) && !assembly.IsDynamic)
248
if (assembly.
IsDefined
(typeof(XmlnsDefinitionAttribute), false) && ! assembly.IsDynamic)
System.Data.Entity (3)
System\Data\Metadata\ObjectItemCollection.cs (2)
84
return assembly.
IsDefined
(typeof(System.Data.Mapping.EntityViewGenerationAttribute), false /*inherit*/);
424
if (assembly.
IsDefined
(typeof(System.Data.Mapping.EntityViewGenerationAttribute), false /*inherit*/))
System\Data\Metadata\ObjectLayer\ObjectItemAttributeAssemblyLoader.cs (1)
745
return assembly.
IsDefined
(typeof(EdmSchemaAttribute), false /*inherit*/);
System.Web (1)
HttpRuntime.cs (1)
2744
return assembly.
IsDefined
(typeof(AllowPartiallyTrustedCallersAttribute), inherit: false);