Candor.Security.UserNotificationProvider.NotifyPasswordReset C# (CSharp) Method

NotifyPasswordReset() public method

Sends a password reset notification to the specified user.
public NotifyPasswordReset ( String userName, ExecutionResults result ) : bool
userName String The user to notify.
result ExecutionResults /// A placeholder for errors in the system, such as email not available now. /// Do not notify caller if the user does not exist, for security reasons.
return bool
        public virtual bool NotifyPasswordReset(String userName, ExecutionResults result)
        {
            //Either configure the Azure implementation, or create your own.
            result.AppendError("The forgot password functionality is not yet implemented.");
            return false;
        }
UserNotificationProvider