FormsAuthentication.Initialize() 的作用是什么?
具体来说,FormsAuthentication.Initialize()
方法实际上是做什么的?
What, specifically, does the FormsAuthentication.Initialize()
method actually do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
http://msdn.microsoft.com/ en-us/library/system.web.security.formsauthentication.initialize.aspx
当 FormsAuthenticationModule 创建 FormsAuthentication 类的实例时,将调用 Initialize 方法。该方法不适合从您的代码中调用。
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.
如有疑问,请使用 Reflector。不幸的是,我没有坐在我的开发电脑前,所以我无法准确地告诉您它的作用,但使用 Reflector,您应该能够在几秒钟内找到答案。
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.