Assembly.IsDefined(Type, Boolean) Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Belirtilen özniteliğin derlemeye uygulanıp uygulanmadığını gösterir.
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
Parametreler
- attributeType
- Type
Bu derleme için denetlenecek özniteliğin türü.
- inherit
- Boolean
Bu türdeki nesneler için bu bağımsız değişken yoksayılır.
Döndürülenler
true
özniteliği derlemeye uygulanmışsa; aksi takdirde , false
.
Uygulamalar
Özel durumlar
attributeType
, null
değeridir.
attributeType
geçersiz bir tür kullanır.
Örnekler
Aşağıdaki kod örneği özniteliğini AssemblyTitleAttribute bir derlemeye uygular ve ardından uygulanıp uygulanmadığını belirtmek için kullanır IsDefined . Ayrıca uygulanmamış bir özniteliği de test eder.
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
'