Class ParseResult
Represents the result of parsing structured data, containing the parsed elements and any parsing issues.
Inheritance
System.Object
ParseResult
Namespace: IronBarCode
Assembly: IronBarCode.dll
Syntax
public class ParseResult : Object
Constructors
ParseResult()
Declaration
public ParseResult()
Properties
Elements
List of parsed elements.
Declaration
public List<ParsedElement> Elements { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<ParsedElement> |
Errors
List of errors encountered during parsing.
Declaration
public List<string> Errors { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> |
FormattedString
Formatted string representation of the parsed data.
Declaration
public string FormattedString { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Success
Indicates whether the parsing was successful.
Declaration
public bool Success { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Warnings
List of warnings encountered during parsing.
Declaration
public List<string> Warnings { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> |