| 123456789101112131415161718192021 |
- //
- // System.Web.Services.Description.SoapBindingStyle.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System.Xml.Serialization;
- namespace System.Web.Services.Description {
- public enum SoapBindingStyle {
- [XmlIgnore]
- Default,
- [XmlEnum ("document")]
- Document,
- [XmlEnum ("rpc")]
- Rpc
- }
- }
|