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 : CapturedResultBase
| Property | Type | Description |
|---|---|---|
Items |
ParsedResultItem[] | The parsed result item at the specified index. |
The following properties are inherited from CapturedResultBase:
| Property | Type | Description |
|---|---|---|
OriginalImageHashId |
string | Represents the hash id of the original image. |
RotationTransformMatrix |
Matrix | Represents the rotation transformation matrix of the original image relative to the rotated image. |
ErrorCode |
int | Represents the error code of this result. |
ErrorMessage |
string | Represents the error message of this result. |
Items
The parsed result item at the specified index.
ParsedResultItem[]? Items { get; }
See Also