System.Reflection.CustomAttributeData
namespace System.Reflection
{
public class CustomAttributeData
{
public Type AttributeType { get; }
public virtual ConstructorInfo Constructor { get; }
public virtual IList<CustomAttributeTypedArgument> ConstructorArguments { get; }
public virtual IList<CustomAttributeNamedArgument> NamedArguments { get; }
protected CustomAttributeData();
public static IList<CustomAttributeData> GetCustomAttributes(Assembly target);
public static IList<CustomAttributeData> GetCustomAttributes(MemberInfo target);
public static IList<CustomAttributeData> GetCustomAttributes(Module target);
public static IList<CustomAttributeData> GetCustomAttributes(ParameterInfo target);
}
}