| 1234567891011121314151617 |
- //
- // System.Web.Services.Protocols.SoapParameterStyle.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- namespace System.Web.Services.Protocols {
- [Serializable]
- public enum SoapParameterStyle {
- Default = 0x0,
- Bare = 0x1,
- Wrapped = 0x2
- }
- }
|