2
0

SessionStateModule.cs 626 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // System.Web.SessionState.SesionStateModule
  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.SessionState
  11. {
  12. public sealed class SessionStateModule : IHttpModule
  13. {
  14. public SessionStateModule ()
  15. {
  16. }
  17. [MonoTODO()]
  18. public void Dispose ()
  19. {
  20. //throw new NotImplementedException ();
  21. }
  22. [MonoTODO()]
  23. public void Init (HttpApplication app)
  24. {
  25. //throw new NotImplementedException ();
  26. }
  27. public event EventHandler Start;
  28. public event EventHandler End;
  29. }
  30. }