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