OperationFormatStyle.cs 587 B

123456789101112131415161718192021222324
  1. //------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //------------------------------------------------------------
  4. namespace System.ServiceModel
  5. {
  6. public enum OperationFormatStyle
  7. {
  8. Document,
  9. Rpc,
  10. }
  11. static class OperationFormatStyleHelper
  12. {
  13. static public bool IsDefined(OperationFormatStyle x)
  14. {
  15. return
  16. x == OperationFormatStyle.Document ||
  17. x == OperationFormatStyle.Rpc ||
  18. false;
  19. }
  20. }
  21. }