Class TextRecognitionResult

TextRecognitionResult class

Represents the aggregated OCR results for a single source document.

public class TextRecognitionResult

Constructors

NameDescription
TextRecognitionResult()The default constructor.

Properties

NameDescription
OcrDetails { get; set; }A list containing the detailed OCR results for each page of the document. For single-image files, this list will typically contain one OcrDetail entry with PageNumber = 1.
OverallSuccess { get; set; }Indicates if OCR was successful for ALL pages within this document. False if any OcrDetail in OcrDetails has Success = false.
SourceIdentifier { get; set; }Identifier for the source file (e.g., the full path or a unique name).
SummaryErrorMessage { get; set; }A consolidated error message if OverallSuccess is false, or a summary if any page failed. Null if OverallSuccess is true.
TotalUsage { get; set; }Gets or sets the total usage statistics for processing this document (all pages).

See Also