1 //------------------------------------------------------------
2 // Copyright (c) Microsoft Corporation.  All rights reserved.
3 //------------------------------------------------------------
4 
5 namespace System.ServiceModel
6 {
7     public enum CacheSetting
8     {
9         Default,
10         AlwaysOn,
11         AlwaysOff
12     }
13 }