ISessionHandler.cs 558 B

123456789101112131415161718192021
  1. //
  2. // System.Web.SessionState.ISessionHandler
  3. //
  4. // Authors:
  5. // Stefan Görling, ([email protected])
  6. //
  7. // (C) 2003 Stefan Görling
  8. //
  9. // This interface is simple, but as it's internal it shouldn't be hard to change it if we need to.
  10. //
  11. namespace System.Web.SessionState
  12. {
  13. internal interface ISessionHandler
  14. {
  15. void Dispose ();
  16. void Init (HttpApplication context, SessionConfig config);
  17. bool UpdateContext (HttpContext context, SessionStateModule module);
  18. void UpdateHandler (HttpContext context, SessionStateModule module);
  19. }
  20. }