共用方式為


AttributeTableContainer.GetAttributes 方法 (MemberInfo, Type, Func<Object, Object>)

列舉指定之成員的自訂屬性,包括繼承自基底成員的屬性。

命名空間:  Microsoft.Windows.Design.Metadata
組件:  Microsoft.Windows.Design.Extensibility (在 Microsoft.Windows.Design.Extensibility.dll 中)

語法

'宣告
Public Function GetAttributes ( _
    member As MemberInfo, _
    attributeType As Type, _
    reflectionMapper As Func(Of Object, Object) _
) As IEnumerable(Of Object)
public IEnumerable<Object> GetAttributes(
    MemberInfo member,
    Type attributeType,
    Func<Object, Object> reflectionMapper
)
public:
IEnumerable<Object^>^ GetAttributes(
    MemberInfo^ member, 
    Type^ attributeType, 
    Func<Object^, Object^>^ reflectionMapper
)
member GetAttributes : 
        member:MemberInfo * 
        attributeType:Type * 
        reflectionMapper:Func<Object, Object> -> IEnumerable<Object> 
public function GetAttributes(
    member : MemberInfo, 
    attributeType : Type, 
    reflectionMapper : Func<Object, Object>
) : IEnumerable<Object>

參數

  • attributeType
    型別:System.Type
    要擷取的屬性型別,或是 nullNull 參照 (即 Visual Basic 中的 Nothing) 表示所有屬性。
  • reflectionMapper
    型別:System.Func<Object, Object>
    選擇性對應函式,用來將傳入的反映中繼資料對應至執行階段中繼資料。

傳回值

型別:System.Collections.Generic.IEnumerable<Object>
屬性 (Attribute) 的列舉型別。

例外狀況

例外狀況 條件
ArgumentNullException

member 為 nullNull 參照 (即 Visual Basic 中的 Nothing)。

備註

傳回的屬性與其他成員的屬性合併,且因成員型別而有所不同。

  • 對於屬性,傳回的屬性也會與屬性型別的屬性合併。

  • 對於事件,傳回的屬性會與事件處理常式型別的屬性合併。

  • 對於類型,傳回的屬性會與在型別上所實作介面的屬性合併。

如果您不要這個自動的合併行為,請改用 GetLocalAttributes 方法。

.NET Framework 安全性

請參閱

參考

AttributeTableContainer 類別

GetAttributes 多載

Microsoft.Windows.Design.Metadata 命名空間