14 references to PasswordInfo
System.DirectoryServices.AccountManagement (14)
System\DirectoryServices\AccountManagement\AuthenticablePrincipal.cs (14)
185get { return this.PasswordInfo.LastPasswordSet; } 190get { return this.PasswordInfo.LastBadPasswordAttempt; } 195get { return this.PasswordInfo.PasswordNotRequired; } 196set { this.PasswordInfo.PasswordNotRequired = value; } 201get { return this.PasswordInfo.PasswordNeverExpires; } 202set { this.PasswordInfo.PasswordNeverExpires = value; } 207get { return this.PasswordInfo.UserCannotChangePassword; } 208set { this.PasswordInfo.UserCannotChangePassword = value; } 213get { return this.PasswordInfo.AllowReversiblePasswordEncryption; } 214set { this.PasswordInfo.AllowReversiblePasswordEncryption = value; } 229this.PasswordInfo.SetPassword(newPassword); 234this.PasswordInfo.ChangePassword(oldPassword, newPassword); 239this.PasswordInfo.ExpirePasswordNow(); 244this.PasswordInfo.RefreshExpiredPassword();