IntegerValidator 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
IntegerValidator 클래스의 새 인스턴스를 초기화합니다.
오버로드
IntegerValidator(Int32, Int32) |
IntegerValidator 클래스의 새 인스턴스를 초기화합니다. |
IntegerValidator(Int32, Int32, Boolean) |
IntegerValidator 클래스의 새 인스턴스를 초기화합니다. |
IntegerValidator(Int32, Int32, Boolean, Int32) |
IntegerValidator 클래스의 새 인스턴스를 초기화합니다. |
IntegerValidator(Int32, Int32)
- Source:
- IntegerValidator.cs
- Source:
- IntegerValidator.cs
- Source:
- IntegerValidator.cs
IntegerValidator 클래스의 새 인스턴스를 초기화합니다.
public:
IntegerValidator(int minValue, int maxValue);
public IntegerValidator (int minValue, int maxValue);
new System.Configuration.IntegerValidator : int * int -> System.Configuration.IntegerValidator
Public Sub New (minValue As Integer, maxValue As Integer)
매개 변수
설명
이 IntegerValidator 생성자 따르는지 확인할 정수는 최소 및 최대 길이입니다.
적용 대상
IntegerValidator(Int32, Int32, Boolean)
- Source:
- IntegerValidator.cs
- Source:
- IntegerValidator.cs
- Source:
- IntegerValidator.cs
IntegerValidator 클래스의 새 인스턴스를 초기화합니다.
public:
IntegerValidator(int minValue, int maxValue, bool rangeIsExclusive);
public IntegerValidator (int minValue, int maxValue, bool rangeIsExclusive);
new System.Configuration.IntegerValidator : int * int * bool -> System.Configuration.IntegerValidator
Public Sub New (minValue As Integer, maxValue As Integer, rangeIsExclusive As Boolean)
매개 변수
- rangeIsExclusive
- Boolean
유효성 검사 범위를 제외로 지정하려면 true
입니다. 포함은 유효성을 검사할 값이 지정된 범위 내에 있어야 함을 나타냅니다. 제외는 값이 최소값보다 작거나 최대값보다 커야 함을 나타냅니다.
예제
다음 코드 예제를 사용 하는 방법에 설명 합니다 IntegerValidator 생성자입니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 IntegerValidator 클래스입니다.
// Create Validator for the range of 1 to 10 inclusive
int minIntVal = 1;
int maxIntVal = 10;
bool exclusive = false;
IntegerValidator integerValidator =
new IntegerValidator(minIntVal, maxIntVal, exclusive);
' Create Validator for the range of 1 to 10 inclusive
Dim minIntVal As Int32 = 1
Dim maxIntVal As Int32 = 10
Dim exclusive As Boolean = False
Dim validator As IntegerValidator = _
New IntegerValidator(minIntVal, maxIntVal, exclusive)
설명
클래스의 IntegerValidator instance 만들 때 이 IntegerValidator 생성자는 최소값과 최대 Int32 값 및 유효성 검사 범위가 배타적인지 여부를 모두 확인합니다. 경우는 rangeIsExclusive
매개 변수는 설정 true
, Int32 값 간의 아니어야 합니다 minValue
및 maxValue
매개 변수 값.
적용 대상
IntegerValidator(Int32, Int32, Boolean, Int32)
- Source:
- IntegerValidator.cs
- Source:
- IntegerValidator.cs
- Source:
- IntegerValidator.cs
IntegerValidator 클래스의 새 인스턴스를 초기화합니다.
public:
IntegerValidator(int minValue, int maxValue, bool rangeIsExclusive, int resolution);
public IntegerValidator (int minValue, int maxValue, bool rangeIsExclusive, int resolution);
new System.Configuration.IntegerValidator : int * int * bool * int -> System.Configuration.IntegerValidator
Public Sub New (minValue As Integer, maxValue As Integer, rangeIsExclusive As Boolean, resolution As Integer)
매개 변수
예외
설명
Int32 유효성을 검사할 값이 동일 해야 합니다 resolution
값 유효성 검사를 통과 합니다.
적용 대상
.NET