AttributeTableContainer.GetAttributes 方法 (Assembly, Type)
列舉指定組件的屬性。
命名空間: Microsoft.Windows.Design.Metadata
組件: Microsoft.Windows.Design.Extensibility (在 Microsoft.Windows.Design.Extensibility.dll 中)
語法
'宣告
Public Function GetAttributes ( _
assembly As Assembly, _
attributeType As Type _
) As IEnumerable(Of Object)
public IEnumerable<Object> GetAttributes(
Assembly assembly,
Type attributeType
)
public:
IEnumerable<Object^>^ GetAttributes(
Assembly^ assembly,
Type^ attributeType
)
member GetAttributes :
assembly:Assembly *
attributeType:Type -> IEnumerable<Object>
public function GetAttributes(
assembly : Assembly,
attributeType : Type
) : IEnumerable<Object>
參數
- assembly
型別:System.Reflection.Assembly
要列舉屬性的組件。
- attributeType
型別:System.Type
要列舉的屬性型別,或是 nullNull 參照 (即 Visual Basic 中的 Nothing) 以列舉所有屬性。
傳回值
型別:System.Collections.Generic.IEnumerable<Object>
屬性 (Attribute) 的列舉型別。
例外狀況
例外狀況 | 條件 |
---|---|
ArgumentNullException | assembly 為 nullNull 參照 (即 Visual Basic 中的 Nothing)。 |
備註
傳回的屬性包括實際組件中所定義的屬性,也包括已新增至目前容器的屬性資料表中定義的屬性。 在屬性資料表中所定義的屬性會優先於組件中所定義的屬性。
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。