| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // System.Web.Services.Description.InputBinding.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 {
- [XmlFormatExtensionPoint ("Extensions")]
- public sealed class InputBinding : MessageBinding {
- #region Fields
- ServiceDescriptionFormatExtensionCollection extensions;
- #endregion // Fields
- #region Constructors
-
- public InputBinding ()
- {
- extensions = new ServiceDescriptionFormatExtensionCollection (this);
- }
-
- #endregion // Constructors
- #region Properties
- [XmlIgnore]
- public override ServiceDescriptionFormatExtensionCollection Extensions {
- get { return extensions; }
- }
-
- #endregion // Properties
- }
- }
|