user366312
user366312

Reputation: 16928

What does FormsAuthentication.Initialize() do?

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

Upvotes: 2

Views: 1189

Answers (2)

Jaimal Chohan
Jaimal Chohan

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

Jim W
Jim W

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

Related Questions