svn path=/trunk/mcs/; revision=64924
[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 
80 #if NET_2_0
81                 override
82 #endif
83                 ServiceDescriptionFormatExtensionCollection Extensions {\r
84                         get { return extensions; }\r
85                 }\r
86 \r
87                 [XmlElement ("fault")]\r
88                 public FaultBindingCollection Faults {\r
89                         get { return faults; }\r
90                 }\r
91 \r
92                 [XmlElement ("input")]\r
93                 public InputBinding Input {\r
94                         get { return input; }\r
95                         set {\r
96                                 input = value; \r
97                                 if (input != null)\r
98                                         input.SetParent (this);\r
99                         }\r
100                 }\r
101 \r
102 #if !NET_2_0\r
103                 [XmlAttribute ("name", DataType = "NCName")]\r
104                 public string Name {\r
105                         get { return name; }\r
106                         set { name = value; }\r
107                 }\r
108 #endif\r
109 \r
110                 [XmlElement ("output")]\r
111                 public OutputBinding Output {\r
112                         get { return output; }\r
113                         set {\r
114                                 output = value; \r
115                                 if (output != null)\r
116                                         output.SetParent (this);\r
117                         }\r
118                 }\r
119 \r
120                 #endregion // Properties\r
121 \r
122                 #region Methods\r
123 \r
124                 internal void SetParent (Binding binding) \r
125                 {\r
126                         this.binding = binding; \r
127                 } \r
128 \r
129                 #endregion\r
130         }\r
131 }\r