ChangeLog 4.5 KB

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