* HttpSessionState.cs: Make the SessionDictionary accessable
[mono.git] / mcs / class / System.Web / System.Web.SessionState / ISessionHandler.cs
index 467144a9d22485b154a0b1330c304e3e60c73865..5e7b903646e72dbeb14b31227bedd01632390eff 100644 (file)
@@ -13,8 +13,9 @@ namespace System.Web.SessionState
        internal interface ISessionHandler
        {
              void Dispose ();
-             void Init (HttpApplication context);
+             void Init (HttpApplication context, SessionConfig config);
              bool UpdateContext (HttpContext context);
+             void UpdateHandler (HttpContext context);
        }
 }