SoapHeaderDirection.cs 318 B

123456789101112131415161718
  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. }
  17. }