| 12345678910111213141516171819202122232425262728293031 |
- //
- // System.Web.SessionState.SesionStateModule
- //
- // Authors:
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (C) 2002 Ximian, Inc (http://www.ximian.com)
- //
- using System.Web;
- namespace System.Web.SessionState {
- public sealed class SessionStateModule : IHttpModule
- {
- public SessionStateModule ()
- {
- }
- [MonoTODO()]
- public void Dispose ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO()]
- public void Init (HttpApplication app)
- {
- throw new NotImplementedException ();
- }
- }
- }
|