ILogOnServiceProcessPasswordResetRequest Method

Processes a reset password request.

Namespace:  Dundas.BI.AccountServices
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax
void ProcessPasswordResetRequest(
	Guid resetToken,
	string newPassword
)

Parameters

resetToken
Type: SystemGuid
The ID of the request.
newPassword
Type: SystemString
The new password.
Exceptions
ExceptionCondition
ArgumentExceptionresetToken is Empty. -or- newPassword is or empty.
ValidationExceptionnewPassword does not meet the complexity requirements.
NotFoundException

resetToken is not a valid password reset token.

-or-

The account specified by resetToken does not exist.

NoPrivilegeException

The PasswordPolicyAllowChange configuration setting is set to .

-or-

The corresponding account is not allowed to change their password.

InvalidOperationExceptionThe account associated with the reset token is disabled.
See Also