StringValidator Constructor (Int32, Int32, String^)
.NET Framework (current version)
Initializes a new instance of the StringValidator class, based on supplied parameters.
Assembly: System.Configuration (in System.Configuration.dll)
Parameters
- minLength
-
Type:
System::Int32
An integer that specifies the minimum length of the string value.
- maxLength
-
Type:
System::Int32
An integer that specifies the maximum length of the string value.
- invalidCharacters
-
Type:
System::String^
A string that represents invalid characters.
This StringValidator constructor ensures that the string being validated adheres to both a minimum and a maximum length, and also ensures that specific characters are excluded in the string.
The following example demonstrates how to use this StringValidator constructor. This code example is part of a larger example provided for the StringValidator class.
.NET Framework
Available since 2.0
Available since 2.0
Show: