SoapHeaderDirection.cs 355 B

123456789101112131415161718192021
  1. //
  2. // System.Web.Services.Protocols.SoapHeaderDirection.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. namespace System.Web.Services.Protocols {
  10. [Flags]
  11. [Serializable]
  12. public enum SoapHeaderDirection {
  13. In = 0x1,
  14. InOut = 0x3,
  15. Out = 0x2,
  16. #if NET_1_1
  17. Fault = 0x4
  18. #endif
  19. }
  20. }