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