Class ParsedElement
Represents a parsed element from structured data, containing information about the element's validity and any issues found.
Inheritance
System.Object
ParsedElement
Namespace: IronBarCode
Assembly: IronBarCode.dll
Syntax
public class ParsedElement : Object
Constructors
ParsedElement()
Declaration
public ParsedElement()
Properties
Data
Data content of the parsed element.
Declaration
public string Data { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Description
Description of the parsed element.
Declaration
public string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Errors
List of errors found during parsing or validation.
Declaration
public List<string> Errors { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> |
Identifier
Identifier of the parsed element.
Declaration
public string Identifier { get; set; }
Property Value
Type | Description |
---|---|
System.String |
IsValid
Indicates whether the element is valid.
Declaration
public bool IsValid { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Warnings
List of warnings found during parsing or validation.
Declaration
public List<string> Warnings { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> |