| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // System.Web.Security.WindowsAuthenticationModule
- //
- // 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 WindowsAuthenticationModule : IHttpModule
- {
- public event WindowsAuthenticationEventHandler Authenticate;
- public WindowsAuthenticationModule ()
- {
- }
- public void Dispose ()
- {
- }
- [MonoTODO]
- public void Init (HttpApplication app)
- {
- throw new NotImplementedException ();
- }
- }
- }
|