FormsAuthenticationModule.cs 504 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // System.Web.Security.FormsAuthenticationModule
  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 FormsAuthenticationModule : IHttpModule
  14. {
  15. public event FormsAuthenticationEventHandler Authenticate;
  16. public void Dispose ()
  17. {
  18. }
  19. [MonoTODO]
  20. public void Init (HttpApplication app)
  21. {
  22. throw new NotImplementedException ();
  23. }
  24. }
  25. }