/// <remarks/>
 public void ImportAsync(string sCommonIDCategory, string sServerName, string sPMProjectName, string sHomePortfolioID, string sManager, string sLifeCycle, psOPEN_CLOSED_STATUS status, string sDomain, psPPM_SYNC_MODE syncMode, psPPM_MAPPING_MODE mappingMode)
 {
     this.ImportAsync(sCommonIDCategory, sServerName, sPMProjectName, sHomePortfolioID, sManager, sLifeCycle, status, sDomain, syncMode, mappingMode, null);
 }
 /// <remarks/>
 public void ImportAsync(string sCommonIDCategory, string sServerName, string sPMProjectName, string sHomePortfolioID, string sManager, string sLifeCycle, psOPEN_CLOSED_STATUS status, string sDomain, psPPM_SYNC_MODE syncMode, psPPM_MAPPING_MODE mappingMode, object userState)
 {
     if ((this.ImportOperationCompleted == null))
     {
         this.ImportOperationCompleted = new System.Threading.SendOrPostCallback(this.OnImportOperationCompleted);
     }
     this.InvokeAsync("Import", new object[] {
         sCommonIDCategory,
         sServerName,
         sPMProjectName,
         sHomePortfolioID,
         sManager,
         sLifeCycle,
         status,
         sDomain,
         syncMode,
         mappingMode
     }, this.ImportOperationCompleted, userState);
 }
 /// <remarks/>
 public System.IAsyncResult BeginImport(string sCommonIDCategory, string sServerName, string sPMProjectName, string sHomePortfolioID, string sManager, string sLifeCycle, psOPEN_CLOSED_STATUS status, string sDomain, psPPM_SYNC_MODE syncMode, psPPM_MAPPING_MODE mappingMode, System.AsyncCallback callback, object asyncState)
 {
     return(this.BeginInvoke("Import", new object[] {
         sCommonIDCategory,
         sServerName,
         sPMProjectName,
         sHomePortfolioID,
         sManager,
         sLifeCycle,
         status,
         sDomain,
         syncMode,
         mappingMode
     }, callback, asyncState));
 }