SoapBindingStyle.cs 376 B

123456789101112131415161718192021
  1. //
  2. // System.Web.Services.Description.SoapBindingStyle.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 SoapBindingStyle {
  12. [XmlIgnore]
  13. Default,
  14. [XmlEnum ("document")]
  15. Document,
  16. [XmlEnum ("rpc")]
  17. Rpc
  18. }
  19. }