| 1234567891011121314151617181920212223 |
- //
- // System.Web.SessionState.ISessionHandler
- //
- // Authors:
- // Stefan Görling, ([email protected])
- //
- // (C) 2003 Stefan Görling
- //
- // This interface is simple, but as it's internal it shouldn't be hard to change it if we need to.
- //
- namespace System.Web.SessionState
- {
- internal interface ISessionHandler
- {
- void Dispose ();
- void Init (HttpApplication context, SessionConfig config);
- HttpSessionState UpdateContext (HttpContext context, SessionStateModule module, bool required,
- bool read_only, ref bool isNew);
- void UpdateHandler (HttpContext context, SessionStateModule module);
- }
- }
|