Table of Contents

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

bool

HasSubComponents

Gets or sets a value indicating whether this component contains subcomponents.

public bool HasSubComponents { get; set; }

Property Value

bool

Name

Gets or sets the one-based name or position of the component.

public string Name { get; set; }

Property Value

string

Repetitions

Gets the repeated values contained in this component.

public Repetitions Repetitions { get; }

Property Value

Repetitions

SubComponents

Gets the subcomponents contained in this component.

public SubComponents SubComponents { get; }

Property Value

SubComponents

Value

Gets or sets the value of the component.

public string Value { get; set; }

Property Value

string

ValueIndexer

Gets the indexer used to retrieve values from this component by element path.

public ValueIndexer ValueIndexer { get; }

Property Value

ValueIndexer