2
0

ChangeLog 4.0 KB

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