다음을 통해 공유


IntegerValidator 생성자

정의

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)

매개 변수

minValue
Int32

최소값을 지정하는 Int32 개체입니다.

maxValue
Int32

최대값을 지정하는 Int32 개체입니다.

설명

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)

매개 변수

minValue
Int32

최소값을 지정하는 Int32 개체입니다.

maxValue
Int32

최대값을 지정하는 Int32 개체입니다.

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 값 간의 아니어야 합니다 minValuemaxValue 매개 변수 값.

적용 대상

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)

매개 변수

minValue
Int32

정수 값의 최소 길이를 지정하는 Int32 개체입니다.

maxValue
Int32

정수 값의 최대 길이를 지정하는 Int32 개체입니다.

rangeIsExclusive
Boolean

유효성 검사 범위가 독점적인지 여부를 지정하는 Boolean 값입니다.

resolution
Int32

일치되어야 하는 값을 지정하는 Int32 개체입니다.

예외

resolution0보다 작은 경우

또는

minValuemaxValue보다 큰 경우

설명

Int32 유효성을 검사할 값이 동일 해야 합니다 resolution 값 유효성 검사를 통과 합니다.

적용 대상