C# 클래스 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.
파일 보기 프로젝트 열기: scoutmedia/DataMigration 1 사용 예제들

공개 메소드들

메소드 설명
Main ( string args ) : void

The entry point for the DataMigration application

비공개 메소드들

메소드 설명
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).

메소드 상세

Main() 공개 정적인 메소드

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. ///
리턴 void