Assembly.IsDefined(Type, Boolean) Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Gibt an, ob ein angegebenes Attribut für die Assembly übernommen worden ist.
public:
virtual bool IsDefined(Type ^ attributeType, bool inherit);
public virtual bool IsDefined (Type attributeType, bool inherit);
abstract member IsDefined : Type * bool -> bool
override this.IsDefined : Type * bool -> bool
Public Overridable Function IsDefined (attributeType As Type, inherit As Boolean) As Boolean
Parameter
- attributeType
- Type
Der Typ des Attributs, das für diese Assembly überprüft werden soll.
- inherit
- Boolean
Dieses Argument wird für Objekte dieses Typs ignoriert.
Gibt zurück
true
, wenn das Attribut für die Assembly übernommen wurde; andernfalls false
.
Implementiert
Ausnahmen
attributeType
ist null
.
attributeType
verwendet einen ungültigen Typ.
Beispiele
Im folgenden Codebeispiel wird das AssemblyTitleAttribute Attribut auf eine Assembly angewendet und dann verwendet IsDefined , um anzugeben, ob es angewendet wurde. Außerdem wird ein Attribut getestet, das nicht angewendet wurde.
using System;
using System.Reflection;
// Set an assembly attribute.
[assembly:AssemblyTitleAttribute("A title example")]
// Note that the suffix "Attribute" can be omitted:
// [assembly:AssemblyTitle("A title example")]
public class Test {
public static void Main() {
// Get the assembly that is executing this method.
Assembly asm = Assembly.GetCallingAssembly();
// Get the attribute type just defined.
Type aType = typeof(AssemblyTitleAttribute);
Console.WriteLine(asm.IsDefined(aType, false));
// Try an attribute not defined.
aType = typeof(AssemblyVersionAttribute);
Console.WriteLine(asm.IsDefined(aType, false));
}
}
//
// This code example produces the following output:
// True
// False
//
Imports System.Reflection
' Set an assembly attribute.
<Assembly:AssemblyTitleAttribute("A title example")>
' Note that the suffix "Attribute" can be omitted:
' <Assembly:AssemblyTitle("A title examle")>
Public Class Test
Public Shared Sub Main()
' Get the assembly that is executing this method.
Dim asm As [Assembly] = [Assembly].GetCallingAssembly
' Get the attribute type just defined.
Dim aType As Type = GetType(AssemblyTitleAttribute)
Console.WriteLine(asm.IsDefined(aType, false))
' Try an attribute not defined.
aType = GetType(AssemblyVersionAttribute)
Console.WriteLine(asm.IsDefined(aType, false))
End Sub
End Class
' This code example produces the following output:
' True
' False
'