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