Class Component
- Namespace
- EDIParser
- Assembly
- EDIParser.dll
Represents a component within an EDI field.
public sealed class Component
- Inheritance
-
Component
- Inherited Members
Remarks
Depending on the EDI standard, a component may contain repeated values, subcomponents, or both.
Properties
HasRepetition
Gets or sets a value indicating whether this component contains repetitions.
public bool HasRepetition { get; set; }
Property Value
HasSubComponents
Gets or sets a value indicating whether this component contains subcomponents.
public bool HasSubComponents { get; set; }
Property Value
Name
Gets or sets the one-based name or position of the component.
public string Name { get; set; }
Property Value
Repetitions
Gets the repeated values contained in this component.
public Repetitions Repetitions { get; }
Property Value
SubComponents
Gets the subcomponents contained in this component.
public SubComponents SubComponents { get; }
Property Value
Value
Gets or sets the value of the component.
public string Value { get; set; }
Property Value
ValueIndexer
Gets the indexer used to retrieve values from this component by element path.
public ValueIndexer ValueIndexer { get; }