* ConformanceChecker.cs, BasicProfileChecker.cs: New files that implement
[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 { input = value; }\r
92                 }\r
93 \r
94 #if !NET_2_0\r
95                 [XmlAttribute ("name", DataType = "NCName")]\r
96                 public string Name {\r
97                         get { return name; }\r
98                         set { name = value; }\r
99                 }\r
100 #endif\r
101 \r
102                 [XmlElement ("output")]\r
103                 public OutputBinding Output {\r
104                         get { return output; }\r
105                         set { output= value; }\r
106                 }\r
107 \r
108                 #endregion // Properties\r
109 \r
110                 #region Methods\r
111 \r
112                 internal void SetParent (Binding binding) \r
113                 {\r
114                         this.binding = binding; \r
115                 } \r
116 \r
117                 #endregion\r
118         }\r
119 }\r