Merge branch 'master' of git://github.com/mono/mono
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Description / OperationBinding.cs
1 // 
2 // System.Web.Services.Description.OperationBinding.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.Serialization;
33
34 namespace System.Web.Services.Description {
35         [XmlFormatExtensionPoint ("Extensions")]
36         public sealed class OperationBinding :
37 #if NET_2_0
38                 NamedItem
39 #else
40                 DocumentableItem 
41 #endif
42         {
43                 #region Fields
44
45                 Binding binding;
46                 ServiceDescriptionFormatExtensionCollection extensions;
47                 FaultBindingCollection faults;
48                 InputBinding input;
49 #if !NET_2_0
50                 string name;
51 #endif
52                 OutputBinding output;
53
54                 #endregion // Fields
55
56                 #region Constructors
57                 
58                 public OperationBinding ()
59                 {
60                         extensions = new ServiceDescriptionFormatExtensionCollection (this);
61                         faults = new FaultBindingCollection (this);
62                         input = null;
63 #if !NET_2_0
64                         name = String.Empty;
65 #endif
66                         output = null;
67                 }
68                 
69                 #endregion // Constructors
70
71                 #region Properties
72         
73 //              [XmlIgnore]
74                 public Binding Binding {
75                         get { return binding; }
76                 }
77
78                 [XmlIgnore]
79                 public 
80 #if NET_2_0
81                 override
82 #endif
83                 ServiceDescriptionFormatExtensionCollection Extensions {
84                         get { return extensions; }
85                 }
86
87                 [XmlElement ("fault")]
88                 public FaultBindingCollection Faults {
89                         get { return faults; }
90                 }
91
92                 [XmlElement ("input")]
93                 public InputBinding Input {
94                         get { return input; }
95                         set {
96                                 input = value; 
97                                 if (input != null)
98                                         input.SetParent (this);
99                         }
100                 }
101
102 #if !NET_2_0
103                 [XmlAttribute ("name", DataType = "NCName")]
104                 public string Name {
105                         get { return name; }
106                         set { name = value; }
107                 }
108 #endif
109
110                 [XmlElement ("output")]
111                 public OutputBinding Output {
112                         get { return output; }
113                         set {
114                                 output = value; 
115                                 if (output != null)
116                                         output.SetParent (this);
117                         }
118                 }
119
120                 #endregion // Properties
121
122                 #region Methods
123
124                 internal void SetParent (Binding binding) 
125                 {
126                         this.binding = binding; 
127                 } 
128
129                 #endregion
130         }
131 }