Reputation: 16928
What, specifically, does the FormsAuthentication.Initialize()
method actually do?
Upvotes: 2
Views: 1189
Reputation: 8645
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.
Upvotes: 0
Reputation: 4970
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.
Upvotes: 4