Exemple #1
0
 /// <remarks/>
 public void NotifyRecoverPasswordAsync(RecoverPasswordInfo info, object userState)
 {
     if ((this.NotifyRecoverPasswordOperationCompleted == null))
     {
         this.NotifyRecoverPasswordOperationCompleted = new System.Threading.SendOrPostCallback(this.OnNotifyRecoverPasswordOperationCompleted);
     }
     this.InvokeAsync("NotifyRecoverPassword", new object[] {
         info
     }, this.NotifyRecoverPasswordOperationCompleted, userState);
 }
Exemple #2
0
 /// <remarks/>
 public void NotifyRecoverPasswordAsync(RecoverPasswordInfo info)
 {
     this.NotifyRecoverPasswordAsync(info, null);
 }
Exemple #3
0
 public void NotifyRecoverPassword(RecoverPasswordInfo info)
 {
     this.Invoke("NotifyRecoverPassword", new object[] {
         info
     });
 }