Assembly.IsDefined(Type, Boolean) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定した属性がアセンブリに適用されているかどうかを示します。
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
パラメーター
- attributeType
- Type
このアセンブリでチェックする属性の型。
- inherit
- Boolean
この型のオブジェクトでは、この引数は無視されます。
戻り値
属性がアセンブリに適用されている場合は true
。それ以外の場合は false
。
実装
例外
attributeType
が null
です。
attributeType
に無効な型が使用されています。
例
次のコード例では、 属性を AssemblyTitleAttribute アセンブリに適用し、 を使用 IsDefined して、それが適用されたかどうかを示します。 また、適用されなかった属性もテストします。
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
'
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET