Table of Contents

Property EntityKind

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

EntityKind

Gets the entity kind that was automatically detected from the field name and type.

public EntityKind EntityKind { get; }

Property Value

EntityKind

The detected EntityKind, or Unknown when no entity kind could be inferred.

Examples

var v = element.Validation;
if (v.EntityKind != EntityKind.Unknown)
{
    Console.WriteLine($"Detected entity: {v.EntityKind}");
}
Share