Table of Contents

Property Value

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

Value

Gets the extracted value as a boxed object.

public object Value { get; }

Property Value

object

The runtime type depends on the ElementType: string, int, long, double, bool, DateTime, or arrays thereof. Returns null when the element could not be extracted or was filtered out by NullOnDoubt. Use As<T>(T) for safe, strongly typed access.

Examples

object raw = element.Value;
Console.WriteLine(raw ?? "(not found)");