C# Класс Castle.Components.Validator.RegularExpressionValidator

Наследование: AbstractValidator
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
ApplyBrowserValidation ( BrowserValidationConfiguration config, InputElementType inputType, IBrowserValidationGenerator generator, IDictionary attributes, string target ) : void

Applies the browser validation by setting up one or more input rules on IBrowserValidationGenerator.

IsValid ( object instance, object fieldValue ) : bool

Validate that the property value match the given regex. Null or empty values are allowed.

RegularExpressionValidator ( String expression ) : System

Initializes a new instance of the RegularExpressionValidator class.

RegularExpressionValidator ( String expression, RegexOptions options ) : System

Initializes a new instance of the RegularExpressionValidator class.

Описание методов

ApplyBrowserValidation() публичный Метод

Applies the browser validation by setting up one or more input rules on IBrowserValidationGenerator.
public ApplyBrowserValidation ( BrowserValidationConfiguration config, InputElementType inputType, IBrowserValidationGenerator generator, IDictionary attributes, string target ) : void
config BrowserValidationConfiguration The config.
inputType InputElementType Type of the input.
generator IBrowserValidationGenerator The generator.
attributes IDictionary The attributes.
target string The target.
Результат void

IsValid() публичный Метод

Validate that the property value match the given regex. Null or empty values are allowed.
public IsValid ( object instance, object fieldValue ) : bool
instance object
fieldValue object
Результат bool

RegularExpressionValidator() публичный Метод

Initializes a new instance of the RegularExpressionValidator class.
public RegularExpressionValidator ( String expression ) : System
expression String The expression.
Результат System

RegularExpressionValidator() публичный Метод

Initializes a new instance of the RegularExpressionValidator class.
public RegularExpressionValidator ( String expression, RegexOptions options ) : System
expression String The expression.
options RegexOptions The regular expression options.
Результат System