Hello,
We are interested in a property that signalizes whether an extraction was successful.
We are calling this:
var extractionOptions = new ExtractionOptions { UseRawTextExtraction = false, };
var extractedData = extractor.Extract(document, extractionOptions);
But the extractedData instance has only 1 method called “Serialize”.
We’d be interested in a property “WasSuccessful” or “IsEmpty” or similar to know whether the extraction was successful or whether it was not able to extract anything from that file…