次の方法で共有


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

指定した名前のメンバーに属性を追加します。

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

構文

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

パラメーター

  • ownerType
    型: System.Type
    メンバーを所有する型。
  • memberName
    型: System.String
    属性を追加するメンバー。

例外

例外 条件
ArgumentNullException

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

解説

メンバーとして、プロパティまたはイベントを指定できます。 メンバーの評価は、指定されたプロパティまたはイベントの属性をユーザーが照会したときに、要求に応じて行われます。 サポートされるメンバーはプロパティとイベントだけです。 その他のメンバーはすべて無視されます。

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

' Apply the ReadOnlyAttribute to the Background property 
' of the Button class.
builder.AddCustomAttributes( _
    GetType(Button), _
    "Background", _
    New ReadOnlyAttribute(True))
// Apply the ReadOnlyAttribute to the Background property 
// of the Button class.
builder.AddCustomAttributes(
    typeof(Button),
    "Background",
    new ReadOnlyAttribute(true));

.NET Framework セキュリティ

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

参照

参照

AttributeTableBuilder クラス

AddCustomAttributes オーバーロード

Microsoft.Windows.Design.Metadata 名前空間

AttributeTable

AttributeCallbackBuilder