本文整理汇总了C#中DigitalPlatform.rms.Client.RmsChannel.ChangePassword方法的典型用法代码示例。如果您正苦于以下问题:C# RmsChannel.ChangePassword方法的具体用法?C# RmsChannel.ChangePassword怎么用?C# RmsChannel.ChangePassword使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DigitalPlatform.rms.Client.RmsChannel
的用法示例。
在下文中一共展示了RmsChannel.ChangePassword方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: button_OK_Click
private void button_OK_Click(object sender, System.EventArgs e)
{
if (textBox_url.Text == "")
{
MessageBox.Show(this, "尚未指定服务器URL...");
return;
}
if (textBox_newPassword.Text != textBox_newPasswordConfirm.Text)
{
MessageBox.Show(this, "新密码和确认密码不一致,请重新输入...");
return;
}
if (textBox_userName.Text == "")
{
MessageBox.Show(this, "尚未输入用户名。");
return;
}
channel = Channels.GetChannel(textBox_url.Text);
Debug.Assert(channel != null, "Channels.GetChannel 异常");
stop.OnStop += new StopEventHandler(this.DoStop);
stop.Initial("正在修改密码...");
stop.BeginLoop();
int nRet;
string strError;
EnableControls(false);
button_Cancel.Text = "中断";
nRet = channel.ChangePassword(
textBox_userName.Text,
textBox_oldPassword.Text,
textBox_newPassword.Text,
checkBox_manager.Checked,
out strError);
EnableControls(true);
stop.EndLoop();
stop.OnStop -= new StopEventHandler(this.DoStop);
stop.Initial("");
button_Cancel.Enabled = true; // 因为Cancel按钮还有退出对话框的功能
button_Cancel.Text = "取消";
if (nRet == -1)
goto ERROR1;
channel = null;
MessageBox.Show(this, "密码修改成功。");
this.DialogResult = DialogResult.OK;
this.Close();
return;
ERROR1:
button_Cancel.Enabled = true;
button_Cancel.Text = "取消";
channel = null;
MessageBox.Show(this, "修改密码失败,原因:" + strError);
}