我想在构建过程中验证类定义的条件,并在未验证某些内容时显示构建错误。
在构建过程中,为该属性定义的每个类创建属性实例。 我想检查类似于例如类没有超过4个属性的东西(例如,这不是我的意图)。如何从每个类的属性构造函数中获取类型? (不作为参数传递)。
示例:
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
public class ValidatePropertiesAttribute:ValidationAttribute
{
public ValidatePropertiesAttribute()
{
if(Validate()==false)
{
throw new Exception("It's not valid!! add more properties to the type 'x'.");
}
}
public bool Validate()
{
//check if there are at least 4 properties in class "X"
//Q: How can I get class "X"?
}
}
[ValidateProperties()]
public class ExampleClass
{
public string OnOneProperty { get; set; }
}
可能吗?
如果没有,还有其他办法吗? (在构建过程中添加验证,并在未经验证的情况下显示错误)
答案 0 :(得分:1)
此解决方案可能有效
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
public class ValidatePropertiesAttribute:ValidationAttribute
{
private Type TargetClass;
public ValidatePropertiesAttribute(Type targetClass)
{
TargetClass = targetClass;
if(Validate() == false)
{
throw new Exception("It's not valid!! add more properties to the type 'x'.");
}
}
public bool Validate()
{
//Use Target Class,
//if you need extract properties use TargetClass.GetProperties()...
//if you need create instance use Activator..
}
}
使用此属性如下
[ValidateProperties(typeof(ExampleClass))]
public class ExampleClass
{
public string OnOneProperty { get; set; }
}