C# 클래스 DataMigration.XmlDocParser

Xml document parser. Crude, dead-simple, puts-the-entire-file-in-memory parser. Do not use for feeds of any size or complexity. There are lots of features that can be added to this one for small feeds that will be added on an in-demand basis, e.g. xslt transformations as a property, change ProcessingHelper so it can use xPath fragments as value selectors, etc., blah, blah. None of that for now.
상속: IParser
파일 보기 프로젝트 열기: scoutmedia/DataMigration

공개 메소드들

메소드 설명
Dispose ( ) : void

Does nothing; this implementation has no native resources to release.

NextRow ( ) : IList

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

Open ( string filePath ) : void

Open the file at the specified Path. Applies the row selector xPath to get out 'rows', (e.g. xPath elements).

메소드 상세

Dispose() 공개 메소드

Does nothing; this implementation has no native resources to release.
public Dispose ( ) : void
리턴 void

NextRow() 공개 메소드

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

Open() 공개 메소드

Open the file at the specified Path. Applies the row selector xPath to get out 'rows', (e.g. xPath elements).
public Open ( string filePath ) : void
filePath string File path.
리턴 void