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

HttpCacheability.cs « System.Web « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e434dd7bce2f2babe7d687feb9e3fddbd8eb1a16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// System.Web.HttpCacheability.cs
//
// Author:
//   Bob Smith <bob@thestuff.net>
//
// (C) Bob Smith
//

namespace System.Web {
	[Serializable]
	public enum HttpCacheability {
		NoCache = 0x1,
		Private,
		Server,
		Public,
		ServerAndPrivate,
		ServerAndNoCache = 0x3
	}
}