C# Class DataMigration.DataMigration

The principal class for the DataMigration tool. It contains the Main() function, and processes command line arguments. It deserializes the DataMigrationPlan object, instantiates a MigrationEngine, and calls its Transform() method.
Afficher le fichier Open project: scoutmedia/DataMigration Class Usage Examples

Méthodes publiques

Méthode Description
Main ( string args ) : void

The entry point for the DataMigration application

Private Methods

Méthode Description
ProcessCommandLineArgs ( IEnumerable args ) : void

Processes the command line arguments. Right now, the only argument actually in use is 'nodownloads'. 'singledatasource' and 'notasks' are for future use; 'singledatasource' will tell the DataMigration engine to just process a single datasourcecode. 'notasks' will tell it to supress the usage of the Task Processing Library, and just process feeds sequentially (None of this task logic is implemented right now; it processes everything sequentially).

Method Details

Main() public static méthode

The entry point for the DataMigration application
public static Main ( string args ) : void
args string The command-line arguments. Currently, 'nodownload', /// 'postprocessload', and 'singledatasource' are the only /// supported arguments. The command line processing is very crude, and could stand /// to be beefed up. ///
Résultat void