ChangeLog 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. 2003-10-28 Jackson Harper <[email protected]>
  2. * HttpSessionState.cs: Do not allow timeout to be set to less then
  3. one.
  4. 2003-10-28 Jackson Harper <[email protected]>
  5. * SessionInProcHandler.cs: Compute timeouts
  6. correctly. DateTime.Milliseconds is the just the milliseconds part
  7. of the time, it is not the entire time as milliseconds.
  8. 2003-10-13 Ben Maurer <[email protected]>
  9. * SessionStateModule.cs: prevent Context.State from being null if
  10. the module is inited in another HttpApplication. Fixes #49569.
  11. 2003-07-30 Andreas Nahr <[email protected]>
  12. * IStateRuntime.cs: New interface class
  13. * StateRuntime.cs: New class - stubbed out
  14. 2003-07-17 Andreas Nahr <[email protected]>
  15. * SessionInProcHandler.cs: Made these internal to fix signature and building CLS-compliant
  16. 2003-07-08 Gonzalo Paniagua Javier <[email protected]>
  17. * SessionDictionary.cs: locking.
  18. * SessionInProcHandler.cs: use the new method instead of the setter.
  19. 2003-07-01 Gonzalo Paniagua Javier <[email protected]>
  20. * ISessionHandler.cs:
  21. * SessionInProcHandler.cs:
  22. * SessionStateModule.cs: UpdateContext returns a bool indicating if we
  23. started a new session. Only call session start event if that is true.
  24. 2003-05-13 Gonzalo Paniagua Javier <[email protected]>
  25. * SessionStateModule.cs: fire application start and session start/end
  26. events.
  27. 2003-03-31 Stefan Görling <[email protected]>
  28. * HttpSessionState.cs:
  29. * ISessionHandler.cs:
  30. * SessionInProcHandler.cs:
  31. * SessionStateModule.cs: initial implementation of InProc session.
  32. 2003-03-13 Gonzalo Paniagua Javier <[email protected]>
  33. * HttpSessionState.cs: implemented CodePage.
  34. * SessionStateModule.cs: initial stuff to make it work.
  35. 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
  36. * HttpSessionState.cs: reworked to use SessionDictionary.
  37. * SessionDictionary.cs: implemented serialization/deserialization.
  38. 2003-03-03 Gonzalo Paniagua Javier <[email protected]>
  39. * SessionConfig.cs:
  40. * SessionStateSectionHandler.cs: new files to read <sessionState>
  41. configuration.
  42. 2002-10-08 Gonzalo Paniagua Javier <[email protected]>
  43. * SessionStateModule.cs: don't throw exception. Just for testing the
  44. configuration stuff until we implement this.
  45. 2002-08-18 Gonzalo Paniagua Javier <[email protected]>
  46. * HttpSessionState.cs: IsAbandoned is internal.
  47. * SessionDictionary.cs: scope fixes.
  48. * SessionStateModule.cs: added events.
  49. 2002-06-30 Gonzalo Paniagua Javier <[email protected]>
  50. * System.Web.SessionState/HttpSessionState.cs:
  51. Fixes based on class status page:
  52. - Add attributes (DefaultEvent, ParseChildren).
  53. - Fix declarations.
  54. - Explicitly implement some interfaces (IPostBackDataHandler
  55. and IPostBackEventHandler).
  56. - Implemented some missing methods.
  57. 2002-06-23 Gonzalo Paniagua Javier <[email protected]>
  58. * HttpSessionState.cs: implemented more methods/properties.
  59. * SessionDictionary.cs: New file.
  60. 2002-06-04 Gonzalo Paniagua Javier <[email protected]>
  61. * System.Web.SessionState/HttpSessionState.cs:
  62. * System.Web.SessionState/SessionStateModule.cs: new files with some
  63. implementation and the rest stubbed.
  64. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  65. * IReadOnlySessionState.cs:
  66. * IRequiresSessionState.cs:
  67. * SessionStateMode.cs: new files.