PassportAuthenticationModule.cs 535 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // System.Web.Security.PassportAuthenticationModule
  3. //
  4. // Authors:
  5. // Gonzalo Paniagua Javier ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc (http://www.ximian.com)
  8. //
  9. using System.Web;
  10. namespace System.Web.Security
  11. {
  12. public sealed class PassportAuthenticationModule : IHttpModule
  13. {
  14. public event PassportAuthenticationEventHandler Authenticate;
  15. public void Dispose ()
  16. {
  17. }
  18. [MonoTODO("Will we ever implement this? :-)")]
  19. public void Init (HttpApplication app)
  20. {
  21. throw new NotImplementedException ();
  22. }
  23. }
  24. }