| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // System.Web.Services.Description.MimeXmlBinding.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System.Web.Services.Configuration;
- using System.Xml.Serialization;
- namespace System.Web.Services.Description {
- [XmlFormatExtension ("mimeXml", "http://schemas.xmlsoap.org/wsdl/mime/", typeof (MimePart), typeof (InputBinding), typeof (OutputBinding))]
- public sealed class MimeXmlBinding : ServiceDescriptionFormatExtension {
- #region Fields
- string part;
- #endregion // Fields
- #region Constructors
-
- public MimeXmlBinding ()
- {
- part = String.Empty;
- }
-
- #endregion // Constructors
- #region Properties
- [XmlAttribute ("part", DataType = "NMTOKEN")]
- public string Part {
- get { return part; }
- set { part = value; }
- }
-
- #endregion // Properties
- }
- }
|