Open this page in the API Guide

ILogOnService.ProcessPasswordResetRequest Method

Processes a reset password request.

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

Parameters

resetToken
Type: System.Guid
The ID of the request.
newPassword
Type: System.String
The new password.
Exceptions
ExceptionCondition
ArgumentExceptionresetToken is Empty. -or- newPassword is null 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 false.

-or-

The corresponding account is not allowed to change their password.

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