Пример #1
0
 /// <remarks/>
 public System.IAsyncResult BeginSaveAccount2(string Login, string Password, TBookAccount2 Account, System.AsyncCallback callback, object asyncState)
 {
     return(this.BeginInvoke("SaveAccount2", new object[] {
         Login,
         Password,
         Account
     }, callback, asyncState));
 }
Пример #2
0
    public int SaveAccount2(string Login, string Password, TBookAccount2 Account)
    {
        object[] results = this.Invoke("SaveAccount2", new object[] {
            Login,
            Password,
            Account
        });

        return((int)(results[0]));
    }
Пример #3
0
 /// <remarks/>
 public void SaveAccount2Async(string Login, string Password, TBookAccount2 Account, object userState)
 {
     if ((this.SaveAccount2OperationCompleted == null))
     {
         this.SaveAccount2OperationCompleted = new System.Threading.SendOrPostCallback(this.OnSaveAccount2OperationCompleted);
     }
     this.InvokeAsync("SaveAccount2", new object[] {
         Login,
         Password,
         Account
     }, this.SaveAccount2OperationCompleted, userState);
 }
Пример #4
0
 /// <remarks/>
 public void SaveAccount2Async(string Login, string Password, TBookAccount2 Account)
 {
     this.SaveAccount2Async(Login, Password, Account, null);
 }