Table of Contents

Property Name

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

Name

Gets the original name of the extraction element.

public string Name { get; }

Property Value

string

The name as provided during construction, without any formatting.

Examples

var el = new TextExtractionElement("OrderId", ElementType.String);
Console.WriteLine(el.Name); // "OrderId"

Remarks

The Name serves as the identifier for the field within the data structure.