views:

173

answers:

2

What does the FormsAuthentication.Initialize() method actually do?

Plz be specific.

+2  A: 

http://msdn.microsoft.com/en-us/library/system.web.security.formsauthentication.initialize.aspx

The Initialize method is called when the FormsAuthenticationModule creates an instance of the FormsAuthentication class. This method is not intended to be called from your code.

Jim W
+1  A: 

When in doubt, use Reflector. Unfortunatly, I;m not sitting at my development PC so I can't tell you eaxctly, what it does, but with Reflector you should be able to find out in a matter of seconds.

Jaimal Chohan