CacheSetting.cs 317 B

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