次の方法で共有


AttributeTable.ContainsAttributes メソッド

指定した型のメタデータがこのテーブルに格納されているかどうかを示す値を返します。

名前空間:  Microsoft.Windows.Design.Metadata
アセンブリ:  Microsoft.Windows.Design.Extensibility (Microsoft.Windows.Design.Extensibility.dll 内)

構文

'宣言
Public Function ContainsAttributes ( _
    type As Type _
) As Boolean
public bool ContainsAttributes(
    Type type
)
public:
bool ContainsAttributes(
    Type^ type
)
member ContainsAttributes : 
        type:Type -> bool 
public function ContainsAttributes(
    type : Type
) : boolean

パラメーター

  • type
    型: System.Type
    メタデータ属性をチェックする型。

戻り値

型: System.Boolean
指定した型の属性がテーブルに含まれている場合は true。それ以外の場合は false。

例外

例外 条件
ArgumentNullException

type は nullnull 参照 (Visual Basic では Nothing) なので、

解説

メタデータは、クラス レベルのメタデータの場合もあれば、DependencyProperty または MemberDescriptor に関連付けられているメタデータの場合もあります。 デザイナーは、新しい属性テーブルが追加されたときに Refreshed イベントの発生を必要とする型を識別したり、属性のクエリ中にさらに詳しく照会する必要のあるテーブルをすばやく決定したりするために、このメソッドを使用します。

ContainsAttributes メソッドを使用して、型にカスタム属性が含まれているかどうかを判断する方法を次のコード例に示します。 次のコード例は、AttributeTable クラス用のより大きなコード例の一部です。

Dim hasCustomAttributes As Boolean = attributes.ContainsAttributes(GetType(Button))
bool hasCustomAttributes = attributes.ContainsAttributes(typeof(Button));

.NET Framework セキュリティ

  • 直前の呼び出し元に対する完全な信頼。 このメンバーは、部分的に信頼されているコードから使用することはできません。 詳細については、「部分信頼コードからのライブラリの使用」を参照してください。

参照

参照

AttributeTable クラス

Microsoft.Windows.Design.Metadata 名前空間

AttributeTableBuilder