BaseValidator.Validate Method

Definition

Performs validation on the associated input control and updates the IsValid property.

public:
 virtual void Validate();
public void Validate ();
abstract member Validate : unit -> unit
override this.Validate : unit -> unit
Public Sub Validate ()

Implements

Examples

For an example of the Validate method used in a derived class, see the CompareValidator class overview.

Remarks

Use the Validate method to perform validation on the associated input control. This method allows you to programmatically perform validation on the input control. The IsValid property is automatically updated with the validation results.

Applies to

See also