@@ -14,34 +14,24 @@ The `ParsedResultItem` class represents a parsed result item generated by code p
1414
1515* Namespace:* Dynamsoft.DCP
1616
17- * Assembly:* Dynamsoft.CodeParser.dll
1817
1918* Inheritance:* [ CapturedResultItem] ({{ site.dcvb_dotnet_api }}core/basic-classes/captured-result-item.html) -> ParsedResultItem
2019
2120``` csharp
22- public class ParsedResultItem
21+ public class ParsedResultItem : CapturedResultItem
2322```
2423
2524## Methods
2625
2726 | Method | Description |
2827 |----------------------|-------------|
29- | [`Dispose`](#dispose) | Releases all resources used by the `ParsedResultItem` object. |
3028 | [`GetCodeType`](#getcodetype ) | Gets the code type of the parsed result . |
3129 | [`GetFieldValue`](#getfieldvalue ) | Gets the value of a specified field from the parsed result . |
30+ | [`GetFieldRawValue`](#getfieldrawvalue ) | Gets the raw value of a specified field from the parsed result . |
3231 | [`GetFieldMappingStatus`](#getfieldmappingstatus ) | Gets the mapping status of a specified field from the parsed result . |
3332 | [`GetFieldValidationStatus`](#getfieldvalidationstatus ) | Gets the validation status of a specified field from the parsed result . |
3433 | [`GetJsonString`](#getjsonstring ) | Gets the parsed result as a JSON formatted string . |
35- | [`GetCapturedResultItemType`](#getcapturedresultitemtype) | Gets the type of the captured result item. |
36- | [`GetReferenceItem`](#getreferenceitem) | Gets the referenced item in the captured result item. |
3734
38- ### Dispose
39-
40- Releases all resources used by the `ParsedResultItem` object.
41-
42- ```csharp
43- void Dispose()
44- ```
4535
4636### GetCodeType
4737
@@ -60,7 +50,7 @@ Returns a string value representing the code type.
6050Gets the value of a specified field from the parsed result .
6151
6252```csharp
63- string GetFieldValue (string fieldName )
53+ string GetFieldValue (string fieldName )
6454```
6555
6656**Parameters **
@@ -71,6 +61,22 @@ string GetFieldValue (string fieldName)
7161
7262Returns a string representing the specified field value .
7363
64+ ### GetFieldRawValue
65+
66+ Gets the raw value of a specified field from the parsed result .
67+
68+ ```csharp
69+ string GetFieldRawValue (string fieldName )
70+ ```
71+
72+ **Parameters **
73+
74+ `[in] fieldName ` The name of the field .
75+
76+ **Return Value **
77+
78+ Returns a string representing the specified field raw value .
79+
7480### GetFieldMappingStatus
7581
7682Gets the mapping status of a specified field from the parsed result .
@@ -90,7 +96,7 @@ Returns an `EnumMappingStatus` value representing the mapping status of a specif
9096
9197**See Also **
9298
93- [EnumMappingStatus]({{ site.dcvb_enumerations }}code-parser/ mapping-status.html?lang = dotnet )
99+ [EnumMappingStatus]({{ site .dcp_dotnet_api }}enum - mapping -status .html )
94100
95101### GetFieldValidationStatus
96102
@@ -110,7 +116,7 @@ Returns an `EnumValidationStatus` value representing the validation status of a
110116
111117**See Also **
112118
113- [EnumValidationStatus]({{ site.dcvb_enumerations }}code-parser/ validation-status.html?lang = dotnet )
119+ [EnumValidationStatus]({{ site .dcp_dotnet_api }}enum - validation -status .html )
114120
115121### GetJsonString
116122
@@ -124,34 +130,3 @@ string GetJsonString()
124130
125131Returns a JSON formatted string representing the full parsed result .
126132
127- ### GetCapturedResultItemType
128-
129- Gets the type of the captured result item.
130-
131- ```csharp
132- EnumCapturedResultItemType GetCapturedResultItemType()
133- ```
134-
135- **Return Value**
136-
137- Returns the type of the captured result item.
138-
139- **See Also**
140-
141- [EnumCapturedResultItemType]({{ site.dcvb_enumerations }}core/captured-result-item-type.html?lang= dotnet )
142-
143- ### GetReferenceItem
144-
145- Gets the referenced item in the captured result item.
146-
147- ```csharp
148- CapturedResultItem GetReferenceItem()
149- ```
150-
151- **Return Value**
152-
153- Returns the referenced item in the captured result item.
154-
155- **See Also**
156-
157- [CapturedResultItem]({{ site.dcvb_dotnet_api }}core/basic-classes/captured-result-item.html)
0 commit comments