Resource Base
Table of contents

This documentation is deprecated. It applies only to legacy version 2.x of Capture Vision and must not be used for new development.

Please refer to the latest documentation and Migration Guide, which supersede this content.

ParsedResult Class

ParsedResult class stores all parsed result items that are obtained from a single image. It carries additional information such as the original image data or error messages.

Definition

Namespace: Dynamsoft.CodeParser.Maui

Assembly: Dynamsoft.CodeParser.Maui

class ParsedResult
Property Type Description
OriginalImageHashId string The hash ID of the source image.
Items *List* The parsed result item at the specified index.
ErrorCode int The error code of the parsed result, if an error occurred.
ErrorString string The error message of the parsed result, if an error occurred.

OriginalImageHashId

The hash ID of the source image.

string OriginalImageHashId { get; }

Items

The parsed result item at the specified index.

List<ParsedResultItem> Items { get; }

See Also

ParsedResultItem

ErrorCode

The error code of the parsed result, if an error occurred.

int ErrorCode { get; }

ErrorMessage

The error message of the parsed result, if an error occurred.

string ErrorMessage { get; }

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: