ChangeLog 2.9 KB

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