<PackageReference Include="NETStandard.Library" Version="2.0.2" />
System.Reflection.ICustomAttributeProvider
namespace System.
Reflection
{
public interface ICustomAttributeProvider
{
object[]
GetCustomAttributes(
bool inherit);
object[]
GetCustomAttributes(
Type attributeType,
bool inherit);
bool IsDefined(
Type attributeType,
bool inherit);
}
}