ParsedResult Class
The ParsedResult class represents the results of a code parser process.
Definition
Namespace: Dynamsoft.DCP
public class ParsedResult
Methods
| Method | Description |
|---|---|
GetOriginalImageHashId |
Gets the hash ID of the source image. |
GetOriginalImageTag |
Gets the tag of the source image. |
GetItems |
Gets all the parsed result items. |
GetErrorCode |
Gets the error code of the parsed result, if an error occurred. |
GetErrorString |
Gets the error message of the parsed result, if an error occurred. |
GetOriginalImageHashId
Gets the hash ID of the source image.
string GetOriginalImageHashId()
Return Value
Returns a string containing the hash ID of the source image.
GetOriginalImageTag
Gets the tag of the source image.
ImageTag GetOriginalImageTag()
Return Value
Returns an ImageTag object representing the tag of the source image.
See Also
GetItems
Gets all the parsed result items.
ParsedResultItem[] GetItems()
Return Value
Returns a ParsedResultItem array.
See Also
GetErrorCode
Gets the error code of the parsed result, if an error occurred.
int GetErrorCode()
Return Value
Returns the error code of the parsed result, or 0 if no error occurred.
See Also
GetErrorString
Gets the error message of the parsed result, if an error occurred.
string GetErrorString()
Return Value
Returns a string containing the error message of the parsed result, or an empty string if no error occurred.