AngleSharp by Florian Rappl

<PackageReference Include="AngleSharp" Version="0.5.1" />

.NET API 737,792 bytes

 ValidityState

public sealed class ValidityState : IValidityState
A class for representing the current validity state.
public bool BadInput { get; }

Gets if the input is bad.

public bool CustomError { get; }

Gets if validation failed due to a custom error.

public bool PatternMismatch { get; }

Gets if the input does not match a given pattern.

public bool RangeOverflow { get; }

Gets if the range is too big.

public bool RangeUnderflow { get; }

Gets if the range is too small.

public bool StepMismatch { get; }

Gets if the new value is invalid.

public bool TooLong { get; }

Gets if the input is too long.

public bool TypeMismatch { get; }

Gets if the given type is wrong.

public bool Valid { get; }

Gets if the value is valid.

public bool ValueMissing { get; }

Gets if a required value is missing.