CAESDO.Recruitment.Providers.CAESDOMembershipProvider.GetPassword C# (CSharp) Method

GetPassword() public method

Pulls the password out of the database if EnablePasswordRetrieval is set to true (not yet implemented).
NotSupportedException
public GetPassword ( string username, string answer ) : string
username string Username
answer string Answer to the users question
return string
        public override string GetPassword(string username, string answer)
        {
            if (!EnablePasswordRetrieval)
            {
                throw new NotSupportedException();
            }

            //SecUtility.CheckParameter(ref username, true, true, true, 256, "username");

            return string.Empty;
            //throw new Exception("The method or operation is not implemented.");
        }