ISessionHandler.cs 433 B

1234567891011121314151617181920
  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);
  17. bool UpdateContext (HttpContext context);
  18. }
  19. }