| 123456789101112131415161718192021222324252627282930 |
- //
- // System.Web.Security.FormsAuthenticationModule
- //
- // Authors:
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (C) 2002 Ximian, Inc (http://www.ximian.com)
- //
- using System;
- using System.Web;
- namespace System.Web.Security
- {
- public sealed class FormsAuthenticationModule : IHttpModule
- {
- public event FormsAuthenticationEventHandler Authenticate;
- public void Dispose ()
- {
- }
- [MonoTODO]
- public void Init (HttpApplication app)
- {
- throw new NotImplementedException ();
- }
- }
- }
|