AuthenticablePrincipal.ChangePassword(String, String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將帳戶密碼從舊密碼變更為新密碼。 請勿與 ComputerPrincipal 搭配使用。
public:
void ChangePassword(System::String ^ oldPassword, System::String ^ newPassword);
public void ChangePassword (string oldPassword, string newPassword);
member this.ChangePassword : string * string -> unit
Public Sub ChangePassword (oldPassword As String, newPassword As String)
參數
- oldPassword
- String
已變更的密碼。
- newPassword
- String
新密碼。
例外狀況
主體尚未保存。
新密碼不符合複雜性需求。
主體不是使用者。
備註
這個方法不適用於計算機主體。 使用 ComputerPrincipal 呼叫這個 時,將會導致 NotSupportedException 擲回 。