ConfigurationValidatorAttribute Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of a validator attribute type.
Overloads
ConfigurationValidatorAttribute() |
Initializes a new instance of the ConfigurationValidatorAttribute class. |
ConfigurationValidatorAttribute(Type) |
Initializes a new instance of the ConfigurationValidatorAttribute class using the specified validator type. |
ConfigurationValidatorAttribute()
Initializes a new instance of the ConfigurationValidatorAttribute class.
protected:
ConfigurationValidatorAttribute();
protected ConfigurationValidatorAttribute ();
Protected Sub New ()
Remarks
You use this constructor in the attributed model to ensure that the value assigned to the related property is an integer.
Applies to
ConfigurationValidatorAttribute(Type)
Initializes a new instance of the ConfigurationValidatorAttribute class using the specified validator type.
public:
ConfigurationValidatorAttribute(Type ^ validator);
public ConfigurationValidatorAttribute (Type validator);
new System.Configuration.ConfigurationValidatorAttribute : Type -> System.Configuration.ConfigurationValidatorAttribute
Public Sub New (validator As Type)
Parameters
- validator
- Type
The validator type to use when creating an instance of ConfigurationValidatorAttribute.
Exceptions
validator
is null
.
validator
is not derived from ConfigurationValidatorBase.
Remarks
This constructor determines whether a validator instance can be created from an instance of the specified validator
type.