Class MinLengthValidationRule
Validates whether value satisfies the MinLength limit.
[ValidationRuleAttribute(typeof(MinLengthValidationRuleAttribute))]
public sealed class MinLengthValidationRule : ValidationRule<MinLengthValidationRuleProperties, MinLengthValidationRuleClientProperties, string>, IValidationRule
- Inheritance
-
objectMinLengthValidationRule
- Implements
- Inherited Members
- Extension Methods
Constructors
MinLengthValidationRule(ILocalizationService)
Creates a new instance of MinLengthValidationRule class.
public MinLengthValidationRule(ILocalizationService localizationService)
Parameters
localizationService
ILocalizationService
Properties
ClientRuleName
Gets the client rule name identifier.
public override string ClientRuleName { get; }
Property Value
- string
DefaultErrorMessage
Defines default error message of the validation rule.
protected override string DefaultErrorMessage { get; }
Property Value
- string
ErrorMessageFormatter
Defines a formatter function for error message.
protected override Func<string, string> ErrorMessageFormatter { get; }
Property Value
- Func<string, string>
Remarks
Formatter is applied for DefaultErrorMessage or ErrorMessage. The custom error message defined by ErrorMessage is considered as a localized and formatted by the caller.
Methods
ConfigureClientProperties(MinLengthValidationRuleClientProperties)
Allows set validation rule client properties.
protected override Task ConfigureClientProperties(MinLengthValidationRuleClientProperties clientProperties)
Parameters
clientProperties
MinLengthValidationRuleClientPropertiesCurrent instance of client properties.
Returns
- Task
Validate(string, IFormFieldValueProvider)
Validates whether value
's length is greater than or equal to MinLength.
public override Task<ValidationResult> Validate(string value, IFormFieldValueProvider formFieldValueProvider)
Parameters
value
stringValue to be validated.
formFieldValueProvider
IFormFieldValueProviderProvider of values of other form fields for contextual validation.
Returns
- Task<ValidationResult>
Returns the validation result.
Remarks
Null value is treated as zero length.