Property Status
- Namespace
- LMKit.Extraction
- Assembly
- LM-Kit.NET.dll
Status
Gets the validation status indicating whether the extracted value conforms to the expected format for the detected entity kind.
public EntityValidationStatus Status { get; }
Property Value
Examples
if (element.Validation.Status == EntityValidationStatus.Invalid)
{
Console.WriteLine($"Value '{element.Value}' failed validation for {element.Validation.EntityKind}");
}