You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
title: ParsedResult Class - DCP MAUI Edition API Reference
4
+
description: ParsedResult class of DCP MAUI stores all parsed result items that are obtained from a single image.
5
+
keywords: ParsedResult, api reference, Android
6
+
needAutoGenerateSidebar: true
7
+
---
8
+
9
+
10
+
# ParsedResult Class
11
+
12
+
`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.
13
+
14
+
## Definition
15
+
16
+
*Namespace:* Dynamsoft.CodeParser.Maui
17
+
18
+
*Assembly:* Dynamsoft.CodeParser.Maui
19
+
20
+
```csharp
21
+
classParsedResult
22
+
```
23
+
24
+
| Property | Type | Description |
25
+
|----------|------|-------------|
26
+
| [`OriginalImageHashId`](#originalimagehashid) | *string* | The hash ID of the source image. |
27
+
| [`Items`](#items) | *List<ParsedResultItem>* | The parsed result item at the specified index. |
28
+
| [`ErrorCode`](#errorcode) | *int* | The error code of the parsed result, if an error occurred. |
29
+
| [`ErrorString`](#errormessage) | *string* | The error message of the parsed result, if an error occurred. |
0 commit comments