Table of Contents

Property DetectedEntityKind

Namespace
LMKit.Extraction
Assembly
LM-Kit.NET.dll

DetectedEntityKind

Gets the semantic entity kind that was automatically detected from the element name and type (for example, EmailAddress, Iban, or PhoneNumber).

public EntityKind DetectedEntityKind { get; }

Property Value

EntityKind

The detected EntityKind, or Unknown when the name does not match any known entity pattern.

Examples

var el = new TextExtractionElement("CustomerEmail", ElementType.String);
Console.WriteLine(el.DetectedEntityKind); // EmailAddress