| 123456789101112131415161718192021 |
- //
- // System.Web.Services.Protocols.SoapHeaderDirection.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- namespace System.Web.Services.Protocols {
- [Flags]
- [Serializable]
- public enum SoapHeaderDirection {
- In = 0x1,
- InOut = 0x3,
- Out = 0x2,
- #if NET_1_1
- Fault = 0x4
- #endif
- }
- }
|