SoapBindingUse.cs 378 B

123456789101112131415161718192021
  1. //
  2. // System.Web.Services.Description.SoapBindingUse.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. using System.Xml.Serialization;
  10. namespace System.Web.Services.Description {
  11. public enum SoapBindingUse {
  12. [XmlIgnore]
  13. Default,
  14. [XmlEnum ("encoded")]
  15. Encoded,
  16. [XmlEnum ("literal")]
  17. Literal
  18. }
  19. }