AttributeTable.AttributedTypes 屬性
會取得所有型別的列舉,這些型別在像是屬性或是型別本身都具有某種屬性覆寫。
命名空間: Microsoft.Windows.Design.Metadata
組件: Microsoft.Windows.Design.Extensibility (在 Microsoft.Windows.Design.Extensibility.dll 中)
語法
'宣告
Public ReadOnly Property AttributedTypes As IEnumerable(Of Type)
Get
public IEnumerable<Type> AttributedTypes { get; }
public:
property IEnumerable<Type^>^ AttributedTypes {
IEnumerable<Type^>^ get ();
}
member AttributedTypes : IEnumerable<Type>
function get AttributedTypes () : IEnumerable<Type>
屬性值
型別:System.Collections.Generic.IEnumerable<Type>
型別的列舉,這些型別都具有屬性覆寫。
備註
您可以使用 AttributedTypes,判斷這份屬性表格加入至設計階段中繼資料時,將會重新整理的型別。
範例
在下列程式碼範例中,會說明如何取得具有自訂屬性的型別。 這個程式碼範例是 AttributeTable 類別完整範例的一部分。
Dim types As IEnumerable(Of Type) = attributes.AttributedTypes
IEnumerable<Type> types = attributes.AttributedTypes;
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。