<PackageReference Include="NETStandard.Library" Version="2.0.2" />

System.Reflection.CustomAttributeData

public class 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); } }