예제 #1
0
 // Inherited from MembershipProvider ==> Forwarded to previous provider if this provider hasn't been initialized
 public override bool ChangePasswordQuestionAndAnswer(string username, string password, string newPasswordQuestion, string newPasswordAnswer)
 {
     if (!InitializeCalled)
     {
         return(PreviousProvider.ChangePasswordQuestionAndAnswer(username, password, newPasswordQuestion, newPasswordAnswer));
     }
     throw new NotSupportedException();
 }