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

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

namespace System.Web {
   public enum HttpCacheRevalidation {
      AllCaches,
      None,
      ProxyCaches
   }
}