Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SessionStateModule.cs « System.Web.SessionState « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: da2654b5089aadf205d43da379c518798084d5f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//
// System.Web.SessionState.SesionStateModule
//
// Authors:
//	Gonzalo Paniagua Javier (gonzalo@ximian.com)
//
// (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 ();
	}
}
}