CustomValidationAttribute(Type, String) 构造函数

定义

初始化 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

执行自定义验证的方法。

注解

此方法指定要在运行时调用的自定义类和相关方法,以便执行自定义验证逻辑。

适用于