| 123456789101112131415161718192021 |
- //
- // 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);
- bool UpdateContext (HttpContext context, SessionStateModule module);
- void UpdateHandler (HttpContext context, SessionStateModule module);
- }
- }
|