GetAttributes

GetAttributes(Assembly)

public static Attribute[] GetAttributes(Assembly assembly) ;

説明

Attributeを取得。

パラメーター

パラメーター名 説明
assembly Assembly

戻り値

Attributes

GetAttributes<T>(Assembly)

public static T[] GetAttributes<T>(Assembly assembly) ;

説明

Attributeの配列を取得 (generic)

型パラメーター

型パラメーター名 説明 型制約
T 取得する型
  • Attribute

パラメーター

パラメーター名 説明
assembly Assembly

戻り値

Attributeの配列

GetAttributes(MemberInfo)

public static Attribute[] GetAttributes(MemberInfo member) ;

説明

Attributeを取得。

パラメーター

パラメーター名 説明
member MemberInfo

戻り値

Attributes

GetAttributes(Type)

public static Attribute[] GetAttributes(Type type) ;

説明

Attributeを取得。

パラメーター

パラメーター名 説明
type Type

戻り値

Attributes

GetAttributes<T>(MemberInfo)

public static T[] GetAttributes<T>(MemberInfo member) ;

説明

Attributeの配列を取得 (generic)

型パラメーター

型パラメーター名 説明 型制約
T 取得する型
  • Attribute

パラメーター

パラメーター名 説明
member MemberInfo

戻り値

Attributeの配列

GetAttributes<T>(Type)

public static T[] GetAttributes<T>(Type type) ;

説明

Attributeの配列を取得 (generic)

型パラメーター

型パラメーター名 説明 型制約
T 取得する型
  • Attribute

パラメーター

パラメーター名 説明
type Type

戻り値

Attributeの配列