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