ServiceContractGenerationOptions.cs 651 B

1234567891011121314151617181920
  1. //-----------------------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //-----------------------------------------------------------------------------
  4. namespace System.ServiceModel.Description
  5. {
  6. [Flags]
  7. public enum ServiceContractGenerationOptions
  8. {
  9. None = 0,
  10. AsynchronousMethods = 1,
  11. ChannelInterface = 2,
  12. InternalTypes = 4,
  13. ClientClass = 8,
  14. TypedMessages = 16,
  15. EventBasedAsynchronousMethods = 32,
  16. TaskBasedAsynchronousMethod = 64
  17. }
  18. }