SubclassTypeValidator Class

Definition

Validates that an object is a derived class of a specified type.

public ref class SubclassTypeValidator sealed : System::Configuration::ConfigurationValidatorBase
public sealed class SubclassTypeValidator : System.Configuration.ConfigurationValidatorBase
type SubclassTypeValidator = class
    inherit ConfigurationValidatorBase
Public NotInheritable Class SubclassTypeValidator
Inherits ConfigurationValidatorBase
Inheritance
SubclassTypeValidator

Remarks

The SubclassTypeValidator class is used to ensure that an object meets specific criteria. The criteria for validation is established when an instance of the SubclassTypeValidator class is created.

The CanValidate method determines whether the type of the object being validated is in fact a Type. The object being validated is passed as a parameter of the Validate method. This method first verifies that the object to validate is not null, and then verifies that the object is a derived class of the expected type.

Constructors

SubclassTypeValidator(Type)

Initializes a new instance of the SubclassTypeValidator class.

Methods

CanValidate(Type)

Determines whether an object can be validated based on type.

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)
Validate(Object)

Determines whether the value of an object is valid.

Applies to