ISessionHandler.cs 604 B

1234567891011121314151617181920212223
  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. HttpSessionState UpdateContext (HttpContext context, SessionStateModule module, bool required,
  18. bool read_only, ref bool isNew);
  19. void UpdateHandler (HttpContext context, SessionStateModule module);
  20. }
  21. }