Table of Contents

Class ParsingMetadata

Namespace
Textkernel.Tx.Models.API.Parsing
Assembly
Textkernel.Tx.SDK.dll

Metadata about a parsing transaction

public class ParsingMetadata
Inheritance
ParsingMetadata
Inherited Members

Properties

ElapsedMilliseconds

How long it took to parse the document, in milliseconds. This is a subset of TotalElapsedMilliseconds

public int ElapsedMilliseconds { get; set; }

Property Value

int

LicenseSerialNumber

For self-hosted customers only. The serial number of the current license being used for parsing.

public string LicenseSerialNumber { get; set; }

Property Value

string

TimedOut

Whether or not the transaction timed out. If this is true, the returned data may be incomplete

public bool TimedOut { get; set; }

Property Value

bool

TimedOutAtMilliseconds

If TimedOut is true, this is how much time was spent parsing before the timeout occurred

public TxPrimitive<int> TimedOutAtMilliseconds { get; set; }

Property Value

TxPrimitive<int>