New test.
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Description / Binding.cs
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 //
9
10 //
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.
29 //
30
31 using System.Web.Services.Configuration;
32 using System.Xml;
33 using System.Xml.Serialization;
34
35 namespace System.Web.Services.Description 
36 {
37         [XmlFormatExtensionPoint ("Extensions")]
38         public sealed class Binding :
39 #if NET_2_0
40                 NamedItem
41 #else
42                 DocumentableItem 
43 #endif
44         {
45
46                 #region Fields
47
48                 ServiceDescriptionFormatExtensionCollection extensions;
49 #if !NET_2_0
50                 string name;
51 #endif
52                 OperationBindingCollection operations;
53                 ServiceDescription serviceDescription;
54                 XmlQualifiedName type;
55
56                 #endregion // Fields
57
58                 #region Constructors
59
60                 public Binding ()
61                 {
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;
69                 }
70                 
71                 #endregion // Constructors
72
73                 #region Properties
74
75                 [XmlIgnore]
76                 public 
77 #if NET_2_0
78                 override
79 #endif
80                 ServiceDescriptionFormatExtensionCollection Extensions {        
81                         get { return extensions; }
82                 }
83
84 #if !NET_2_0
85                 [XmlAttribute ("name", DataType = "NCName")]    
86                 public string Name {
87                         get { return name; }
88                         set { name = value; }
89                 }
90 #endif
91
92                 [XmlElement ("operation")]
93                 public OperationBindingCollection Operations {
94                         get { return operations; }
95                 }
96
97                 public ServiceDescription ServiceDescription {
98                         get { return serviceDescription; }
99                 }
100
101                 [XmlAttribute ("type")] 
102                 public XmlQualifiedName Type {
103                         get { return type; }
104                         set { type = value; }
105                 }
106
107                 #endregion // Properties
108
109                 #region Methods
110
111                 internal void SetParent (ServiceDescription serviceDescription)
112                 {
113                         this.serviceDescription = serviceDescription;
114                 }
115
116                 #endregion // Methods
117         }
118 }