Skip to content

Commit 2de2535

Browse files
update to internal commit a29fca98
1 parent 52d6461 commit 2de2535

File tree

2 files changed

+73
-26
lines changed

2 files changed

+73
-26
lines changed
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
---
2+
layout: default-layout
3+
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+
class ParsedResult
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. |
30+
31+
### OriginalImageHashId
32+
33+
The hash ID of the source image.
34+
35+
```csharp
36+
string OriginalImageHashId { get; }
37+
```
38+
39+
### Items
40+
41+
The parsed result item at the specified index.
42+
43+
```csharp
44+
List<ParsedResultItem> Items { get; }
45+
```
46+
47+
**See Also**
48+
49+
[ParsedResultItem]({{ site.dcp_maui_api }}parsed-result-item.html)
50+
51+
### ErrorCode
52+
53+
The error code of the parsed result, if an error occurred.
54+
55+
```csharp
56+
int ErrorCode { get; }
57+
```
58+
59+
### ErrorMessage
60+
61+
The error message of the parsed result, if an error occurred.
62+
63+
```csharp
64+
string ErrorMessage { get; }
65+
```

programming/maui/api-reference/parsed-result.md

Lines changed: 8 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,21 @@ needAutoGenerateSidebar: true
1818
*Assembly:* Dynamsoft.CodeParser.Maui
1919

2020
```csharp
21-
class ParsedResult
21+
class ParsedResult : CapturedResultBase
2222
```
2323

2424
| Property | Type | Description |
2525
|----------|------|-------------|
26-
| [`OriginalImageHashId`](#originalimagehashid) | *string* | The hash ID of the source image. |
2726
| [`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. |
3027

31-
### OriginalImageHashId
28+
The following properties are inherited from [`CapturedResultBase`]({{ site.dcv_maui_api }}core/captured-result-base.html):
3229

33-
The hash ID of the source image.
34-
35-
```csharp
36-
string OriginalImageHashId { get; }
37-
```
30+
| Property | Type | Description |
31+
| -------- | ---- | ----------- |
32+
| [`OriginalImageHashId`]({{ site.dcv_maui_api }}core/captured-result-base.html#originalimagehashid) | *string* | Represents the hash id of the original image. |
33+
| [`RotationTransformMatrix`]({{ site.dcv_maui_api }}core/captured-result-base.html#rotationtransformmatrix) | *Matrix* | Represents the rotation transformation matrix of the original image relative to the rotated image. |
34+
| [`ErrorCode`]({{ site.dcv_maui_api }}core/captured-result-base.html#errorcode) | *int* | Represents the error code of this result. |
35+
| [`ErrorMessage`]({{ site.dcv_maui_api }}core/captured-result-base.html#errormessage) | *string* | Represents the error message of this result. |
3836

3937
### Items
4038

@@ -47,19 +45,3 @@ List<ParsedResultItem> Items { get; }
4745
**See Also**
4846

4947
[ParsedResultItem]({{ site.dcp_maui_api }}parsed-result-item.html)
50-
51-
### ErrorCode
52-
53-
The error code of the parsed result, if an error occurred.
54-
55-
```csharp
56-
int ErrorCode { get; }
57-
```
58-
59-
### ErrorMessage
60-
61-
The error message of the parsed result, if an error occurred.
62-
63-
```csharp
64-
string ErrorMessage { get; }
65-
```

0 commit comments

Comments
 (0)