Where exactly does Forms Authentication exist in the Http Pipeline?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Guess I should’ve thought of this first but it didn’t dawn on me until I saw the answer from @Carl Raymond that I can just crack it open in reflector. So to answer my own question
OnEntercalls the private methodOnAuthenticatewhich passes in the application context and this is where it validates/writes out the Form Auth tickets.In
OnExitit checks the response for a Http Status Error Code 401 and if it finds it, that’s when it redirects to the Login Url.