次の方法で共有


AttributeTableBuilder.AddCustomAttributes メソッド (Type, array<Attribute )

テーブル ビルダーに提供された属性の内容を追加します。

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

構文

'宣言
Public Sub AddCustomAttributes ( _
    type As Type, _
    ParamArray attributes As Attribute() _
)
public void AddCustomAttributes(
    Type type,
    params Attribute[] attributes
)
public:
void AddCustomAttributes(
    Type^ type, 
    ... array<Attribute^>^ attributes
)
member AddCustomAttributes : 
        type:Type * 
        attributes:Attribute[] -> unit 
public function AddCustomAttributes(
    type : Type, 
    ... attributes : Attribute[]
)

パラメーター

  • type
    型: System.Type
    クラス レベルの属性が追加される型。
  • attributes
    型: array<System.Attribute[]
    type に追加される新しい属性。

例外

例外 条件
ArgumentNullException

type または attributes が nullnull 参照 (Visual Basic では Nothing) です。

解説

競合は、最新操作の優先方式で解決されます。 大きい属性テーブルを作成する場合は、AddCallback メソッドを使用して、必要になるまで属性の作成を延期してください。

属性を型に追加する方法を次のコード例に示します。 次のコード例は、AttributeTableBuilder クラス用のより大きなコード例の一部です。

builder.AddCustomAttributes( _
    GetType(Button), _
    New DefaultPropertyAttribute("Content"))
builder.AddCustomAttributes(
    typeof(Button),
    new DefaultPropertyAttribute("Content"));

.NET Framework セキュリティ

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

参照

参照

AttributeTableBuilder クラス

AddCustomAttributes オーバーロード

Microsoft.Windows.Design.Metadata 名前空間

AttributeTable

AttributeCallbackBuilder