Пример #1
0
 private void NetworkingEvents_PasswordChangeResultEvent(Networking.Data.ResponseCodes.GenericResponse response)
 {
     this.Invoke(new Action(() =>
     {
         MessageBox.Show("Password changed " + response.ToString());
     }));
 }
Пример #2
0
 private void NetworkingEvents_AccountUpdatedResultEvent(Networking.Data.ResponseCodes.GenericResponse response)
 {
     this.Invoke(new Action(() =>
     {
         MessageBox.Show("Account updated " + response.ToString());
     }));
 }