C# Class FlatFiles.IgnoredColumn

Represents a column that should be ignored when reading a document and used as a placeholder when writing a document.
Inheritance: ColumnDefinition
显示文件 Open project: jehugaleahsa/FlatFiles

Public Methods

Method Description
Format ( object value ) : string

Returns null so nothing is written to the document.

IgnoredColumn ( ) : System

Initializes a new IgnoredColumn.

IgnoredColumn ( string columnName ) : System

Initializes a new IgnoredColumn with a header name.

Parse ( string value ) : object

Ignores the values that was parsed from the document.

Method Details

Format() public method

Returns null so nothing is written to the document.
public Format ( object value ) : string
value object The value that needs written to the document.
return string

IgnoredColumn() public method

Initializes a new IgnoredColumn.
public IgnoredColumn ( ) : System
return System

IgnoredColumn() public method

Initializes a new IgnoredColumn with a header name.
public IgnoredColumn ( string columnName ) : System
columnName string
return System

Parse() public method

Ignores the values that was parsed from the document.
public Parse ( string value ) : object
value string The value that was parsed from the document.
return object