Interface ICustomCharValidator
Contains methods which allow to check whether the character (or it's category) is valid for the input.
public interface ICustomCharValidator : IImmutableObject, IDisposableObject, IDisposable, IBaseObject
Methods
- IsValid(char)
Checks whether the specified char and it's category are valid for the input.
- IsValidCategory(char)
Checks whether the specified char category is valid for the input.
- IsValidCategory(UnicodeCategory)
Checks whether the specified char category is valid for the input.
- IsValidChar(char)
Checks whether the specified char is valid for the input. This method doesn't perform checks on char category, use IsValid(char) to check both char and it's category.