ChangeLog 3.9 KB

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