| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // System.Web.Services.Description.MimeMultipartRelatedBinding.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 ("multipartRelated", "http://schemas.xmlsoap.org/wsdl/mime/", typeof (InputBinding), typeof (OutputBinding))]
- public sealed class MimeMultipartRelatedBinding : ServiceDescriptionFormatExtension {
- #region Fields
- MimePartCollection parts;
- #endregion // Fields
- #region Constructors
-
- public MimeMultipartRelatedBinding ()
- {
- parts = new MimePartCollection ();
- }
-
- #endregion // Constructors
- #region Properties
- [XmlElement ("parts")]
- public MimePartCollection Parts {
- get { return parts; }
- }
- #endregion // Properties
- }
- }
|