WindowsAuthenticationModule.cs 559 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // System.Web.Security.WindowsAuthenticationModule
  3. //
  4. // Authors:
  5. // Gonzalo Paniagua Javier ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc (http://www.ximian.com)
  8. //
  9. using System;
  10. using System.Web;
  11. namespace System.Web.Security
  12. {
  13. public sealed class WindowsAuthenticationModule : IHttpModule
  14. {
  15. public event WindowsAuthenticationEventHandler Authenticate;
  16. public WindowsAuthenticationModule ()
  17. {
  18. }
  19. public void Dispose ()
  20. {
  21. }
  22. [MonoTODO]
  23. public void Init (HttpApplication app)
  24. {
  25. throw new NotImplementedException ();
  26. }
  27. }
  28. }