Assembly::IsDefined Method
Indicates whether or not a specified attribute has been applied to the assembly.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- attributeType
- Type: System::Type
The type of the attribute to be checked for this assembly.
- inherit
- Type: System::Boolean
This argument is ignored for objects of this type.
Return Value
Type: System::Booleantrue if the attribute has been applied to the assembly; otherwise, false.
Implements
_Assembly::IsDefined(Type, Boolean)ICustomAttributeProvider::IsDefined(Type, Boolean)
| Exception | Condition |
|---|---|
| ArgumentNullException | attributeType is nullptr. |
| ArgumentException | attributeType uses an invalid type. |
Note |
|---|
In the .NET Framework version 2.0, this method returns true if the assembly has security attributes stored in the new metadata format. Assemblies compiled with version 2.0 use this format. Dynamic assemblies and assemblies compiled with earlier versions of the .NET Framework use the old XML format. See Emitting Declarative Security Attributes. |
The following code example applies the AssemblyTitleAttribute attribute to an assembly and then uses IsDefined to indicate whether it was applied. It also tests an attribute that was not applied.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note