2
0

SessionStateModule.cs 533 B

12345678910111213141516171819202122232425262728293031
  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. public sealed class SessionStateModule : IHttpModule
  12. {
  13. public SessionStateModule ()
  14. {
  15. }
  16. [MonoTODO()]
  17. public void Dispose ()
  18. {
  19. throw new NotImplementedException ();
  20. }
  21. [MonoTODO()]
  22. public void Init (HttpApplication app)
  23. {
  24. throw new NotImplementedException ();
  25. }
  26. }
  27. }