ServiceDescriptionImportWarnings.cs 500 B

1234567891011121314151617181920
  1. //
  2. // System.Web.Services.Description.ServiceDescriptionImportWarnings.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. namespace System.Web.Services.Description {
  10. [Serializable]
  11. public enum ServiceDescriptionImportWarnings {
  12. NoCodeGenerated = 0x1,
  13. NoMethodsGenerated = 0x20,
  14. OptionalExtensionsIgnored = 0x2,
  15. RequiredExtensionsIgnored = 0x4,
  16. UnsupportedBindingsIgnored = 0x10,
  17. UnsupportedOperationsIgnored = 0x8
  18. }
  19. }