Open this page in the API Guide

ILogOnService.SubmitPasswordResetRequest Method

Submits a request to reset the password for a local user account.

Namespace:  Dundas.BI.AccountServices
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.1.0.1000)
Syntax
void SubmitPasswordResetRequest(
	string accountName
)

Parameters

accountName
Type: System.String
The local user account name.
Exceptions
ExceptionCondition
ArgumentException

accountName is empty or null.

InvalidOperationExceptionThe specified account is not a local user account.
NoPrivilegeException

The PasswordPolicyAllowChange configuration setting is set to false.

-or-

The specified account is not allowed to change their password.

NotSupportedExceptionThe email service is not enabled.
Remarks
This method will send an e-mail to the user with a link that they can use to reset the password.
See Also