| 123456789101112131415161718 |
- //
- // 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
- }
- }
|