SoapServiceRoutingStyle.cs 319 B

12345678910111213141516
  1. //
  2. // System.Web.Services.Protocols.SoapServiceRoutingStyle.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 SoapServiceRoutingStyle {
  12. SoapAction = 0x0,
  13. RequestElement = 0x1
  14. }
  15. }