SubclassTypeValidator.Validate(Object) Method

Definition

Determines whether the value of an object is valid.

public:
 override void Validate(System::Object ^ value);
public override void Validate (object value);
override this.Validate : obj -> unit
Public Overrides Sub Validate (value As Object)

Parameters

value
Object

The object value.

Exceptions

value is not of a Type that can be derived from baseClass as defined in the constructor.

Remarks

When an instance of the SubclassTypeValidator class is created, the base class is provided and used as evaluation criteria. The object to validate is passed as a parameter of the Validate method. This method performs the validation check between the base class and the parameter object.

Applies to