C# Class FlatFiles.FixedLengthComplexColumn

Represents a string column that has contains multiple, nested values
Inheritance: ColumnDefinition
Afficher le fichier Open project: jehugaleahsa/FlatFiles

Méthodes publiques

Méthode Description
FixedLengthComplexColumn ( string columnName, FixedLengthSchema schema ) : System

Initializes a new FixedLengthComplexColumn with the given schema and default options.

FixedLengthComplexColumn ( string columnName, FixedLengthSchema schema, FlatFiles.FixedLengthOptions options ) : System

Initializes a new FixedLengthComplexColumn with the given schema and options.

Format ( object value ) : string

Formats the given object array into an embedded record.

Parse ( string value ) : object

Extracts a single record from the embedded data.

Method Details

FixedLengthComplexColumn() public méthode

Initializes a new FixedLengthComplexColumn with the given schema and default options.
public FixedLengthComplexColumn ( string columnName, FixedLengthSchema schema ) : System
columnName string The name of the column.
schema FixedLengthSchema The schema of the data embedded in the column.
Résultat System

FixedLengthComplexColumn() public méthode

Initializes a new FixedLengthComplexColumn with the given schema and options.
public FixedLengthComplexColumn ( string columnName, FixedLengthSchema schema, FlatFiles.FixedLengthOptions options ) : System
columnName string The name of the column.
schema FixedLengthSchema The schema of the data embedded in the column.
options FlatFiles.FixedLengthOptions The options to use when parsing the embedded data.
Résultat System

Format() public méthode

Formats the given object array into an embedded record.
public Format ( object value ) : string
value object The object array containing the values of the embedded record.
Résultat string

Parse() public méthode

Extracts a single record from the embedded data.
public Parse ( string value ) : object
value string The value containing the embedded data.
Résultat object