(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Web.Services / System.Web.Services.Description / Binding.cs
blob82ac7e18473c4f40c877a30b073a2e70be8cb9f7
1 //
2 // System.Web.Services.Description.Binding.cs
3 //
4 // Author:
5 // Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2002
8 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 //
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 //
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 using System.Web.Services.Configuration;
32 using System.Xml;
33 using System.Xml.Serialization;
35 namespace System.Web.Services.Description
37 [XmlFormatExtensionPoint ("Extensions")]
38 public sealed class Binding :
39 #if NET_2_0
40 NamedItem
41 #else
42 DocumentableItem
43 #endif
46 #region Fields
48 ServiceDescriptionFormatExtensionCollection extensions;
49 #if !NET_2_0
50 string name;
51 #endif
52 OperationBindingCollection operations;
53 ServiceDescription serviceDescription;
54 XmlQualifiedName type;
56 #endregion // Fields
58 #region Constructors
60 public Binding ()
62 extensions = new ServiceDescriptionFormatExtensionCollection (this);
63 #if !NET_2_0
64 name = String.Empty;
65 #endif
66 operations = new OperationBindingCollection (this);
67 serviceDescription = null;
68 type = XmlQualifiedName.Empty;
71 #endregion // Constructors
73 #region Properties
75 [XmlIgnore]
76 public ServiceDescriptionFormatExtensionCollection Extensions {
77 get { return extensions; }
80 #if !NET_2_0
81 [XmlAttribute ("name", DataType = "NCName")]
82 public string Name {
83 get { return name; }
84 set { name = value; }
86 #endif
88 [XmlElement ("operation")]
89 public OperationBindingCollection Operations {
90 get { return operations; }
93 public ServiceDescription ServiceDescription {
94 get { return serviceDescription; }
97 [XmlAttribute ("type")]
98 public XmlQualifiedName Type {
99 get { return type; }
100 set { type = value; }
103 #endregion // Properties
105 #region Methods
107 internal void SetParent (ServiceDescription serviceDescription)
109 this.serviceDescription = serviceDescription;
112 #endregion // Methods