AttributeTableContainer.GetAttributes メソッド (MemberInfo, Type)
基本メンバーから継承された属性を含め、指定されたメンバーのカスタム属性を列挙します。
名前空間: Microsoft.Windows.Design.Metadata
アセンブリ: Microsoft.Windows.Design.Extensibility (Microsoft.Windows.Design.Extensibility.dll 内)
構文
'宣言
Public Function GetAttributes ( _
member As MemberInfo, _
attributeType As Type _
) As IEnumerable(Of Object)
public IEnumerable<Object> GetAttributes(
MemberInfo member,
Type attributeType
)
public:
IEnumerable<Object^>^ GetAttributes(
MemberInfo^ member,
Type^ attributeType
)
member GetAttributes :
member:MemberInfo *
attributeType:Type -> IEnumerable<Object>
public function GetAttributes(
member : MemberInfo,
attributeType : Type
) : IEnumerable<Object>
パラメーター
- member
型: System.Reflection.MemberInfo
属性を取得するメンバー。
- attributeType
型: System.Type
取得対象の属性の型。すべての属性を取得する場合は nullnull 参照 (Visual Basic では Nothing)。
戻り値
型: System.Collections.Generic.IEnumerable<Object>
属性の列挙体。
例外
例外 | 条件 |
---|---|
ArgumentNullException | member は nullnull 参照 (Visual Basic では Nothing) なので、 |
解説
返される属性は、他のメンバーの属性にマージされ、メンバー型によって異なります。
プロパティの場合は、返される属性もプロパティの型の属性にマージされます。
イベントの場合は、返される属性がイベント ハンドラー型の属性にマージされます。
型の場合、返される属性はその型に実装されているインターフェイスの属性にマージされます。
この自動結合動作が不要な場合は、代わりに GetLocalAttributes メソッドを使用します。
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。 このメンバーは、部分的に信頼されているコードから使用することはできません。 詳細については、「部分信頼コードからのライブラリの使用」を参照してください。