C# Class 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.
Inheritance: IParser
Afficher le fichier Open project: scoutmedia/DataMigration

Méthodes publiques

Méthode Description
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).

Method Details

Dispose() public méthode

Does nothing; this implementation has no native resources to release.
public Dispose ( ) : void
Résultat void

NextRow() public méthode

Returns the next row of data, and advances the CurrentRow.
public NextRow ( ) : IList
Résultat IList

Open() public méthode

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.
Résultat void