SoapParameterStyle.cs 314 B

1234567891011121314151617
  1. //
  2. // System.Web.Services.Protocols.SoapParameterStyle.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. namespace System.Web.Services.Protocols {
  10. [Serializable]
  11. public enum SoapParameterStyle {
  12. Default = 0x0,
  13. Bare = 0x1,
  14. Wrapped = 0x2
  15. }
  16. }