CustomValidationAttribute(Type, String) 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 CustomValidationAttribute 类的新实例。
public:
CustomValidationAttribute(Type ^ validatorType, System::String ^ method);
public CustomValidationAttribute (Type validatorType, string method);
new System.ComponentModel.DataAnnotations.CustomValidationAttribute : Type * string -> System.ComponentModel.DataAnnotations.CustomValidationAttribute
Public Sub New (validatorType As Type, method As String)
参数
- validatorType
- Type
包含执行自定义验证的方法的类型。
- method
- String
执行自定义验证的方法。
注解
此方法指定要在运行时调用的自定义类和相关方法,以便执行自定义验证逻辑。