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

SessionStateMode.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: 1a5fcc290c3583d0dda4ff32cfc730e20582e61a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// System.Web.SessionState.SessionStateMode
//
// Authors:
//	Gonzalo Paniagua Javier (gonzalo@ximian.com)
//
// (C) 2002 Ximian, Inc (http://www.ximian.com)
//

namespace System.Web.SessionState {
public enum SessionStateMode
{
	Off = 0,
	InProc = 1,
	StateServer = 2,
	SQLServer = 3
}

}