/// <remarks/>
 public void ProjectLogonAsync(CProject pProj, string username, string password) {
     this.ProjectLogonAsync(pProj, username, password, null);
 }
 /// <remarks/>
 public void ProjectLogonAsync(CProject pProj, string username, string password, object userState) {
     if ((this.ProjectLogonOperationCompleted == null)) {
         this.ProjectLogonOperationCompleted = new System.Threading.SendOrPostCallback(this.OnProjectLogonOperationCompleted);
     }
     this.InvokeAsync("ProjectLogon", new object[] {
                 pProj,
                 username,
                 password}, this.ProjectLogonOperationCompleted, userState);
 }
 public long ProjectLogon(CProject pProj, string username, string password) {
     object[] results = this.Invoke("ProjectLogon", new object[] {
                 pProj,
                 username,
                 password});
     return ((long)(results[0]));
 }