C# 클래스 DataMigration.ParameterizedDelimiterParser

ParameterizedDelimiterParser takes some sort of character property from the DataSourcePlan, and uses that to parse the file. Thus a crude CSV parser (putting aside complications inherent in csv) would specify a comma, where a tab-delimited-text parser specifies a tab.
상속: IParser
파일 보기 프로젝트 열기: scoutmedia/DataMigration

공개 메소드들

메소드 설명
Dispose ( ) : void

Disposes of the textReader member.

NextRow ( ) : IList

Returns the next row of data, and advances the CurrentRow.

Open ( string filePath ) : void

Open the file the specified Path. The caller is responsible for calling Dispose once Open() has been called. This implementation will use the delimiter as described in the Plan.

메소드 상세

Dispose() 공개 메소드

Disposes of the textReader member.
public Dispose ( ) : void
리턴 void

NextRow() 공개 메소드

Returns the next row of data, and advances the CurrentRow.
public NextRow ( ) : IList
리턴 IList

Open() 공개 메소드

Open the file the specified Path. The caller is responsible for calling Dispose once Open() has been called. This implementation will use the delimiter as described in the Plan.
public Open ( string filePath ) : void
filePath string File path.
리턴 void