Example #1
0
 /// <remarks/>
 public void ChangePasswordAsync(ChangePasswordRequest changePasswordRequest, object userState) {
     if ((this.ChangePasswordOperationCompleted == null)) {
         this.ChangePasswordOperationCompleted = new System.Threading.SendOrPostCallback(this.OnChangePasswordOperationCompleted);
     }
     this.InvokeAsync("ChangePassword", new object[] {
                 changePasswordRequest}, this.ChangePasswordOperationCompleted, userState);
 }
Example #2
0
 /// <remarks/>
 public System.IAsyncResult BeginChangePassword(ChangePasswordRequest changePasswordRequest, System.AsyncCallback callback, object asyncState) {
     return this.BeginInvoke("ChangePassword", new object[] {
                 changePasswordRequest}, callback, asyncState);
 }
Example #3
0
 /// <remarks/>
 public void ChangePasswordAsync(ChangePasswordRequest changePasswordRequest) {
     this.ChangePasswordAsync(changePasswordRequest, null);
 }
Example #4
0
 public ChangePasswordResponse ChangePassword(ChangePasswordRequest changePasswordRequest) {
     object[] results = this.Invoke("ChangePassword", new object[] {
                 changePasswordRequest});
     return ((ChangePasswordResponse)(results[0]));
 }