/// <remarks/> public void ChangePasswordAsync(ChangePwdSecurityCredentials credentials, object userState) { if ((this.ChangePasswordOperationCompleted == null)) { this.ChangePasswordOperationCompleted = new System.Threading.SendOrPostCallback(this.OnChangePasswordOperationCompleted); } this.InvokeAsync("ChangePassword", new object[] { credentials }, this.ChangePasswordOperationCompleted, userState); }
/// <remarks/> public void ChangePasswordAsync(ChangePwdSecurityCredentials credentials) { this.ChangePasswordAsync(credentials, null); }
public void ChangePassword(ChangePwdSecurityCredentials credentials) { this.Invoke("ChangePassword", new object[] { credentials }); }