2010-04-15 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.Web.Services / System.Web.Services.Description / OperationBinding.cs
blob0e19225c3cafa862eb1afbc578dafb2467f6c918
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 //
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.
31 using System.Web.Services.Configuration;
32 using System.Xml.Serialization;
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
43 #region Fields
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;
54 #endregion // Fields
56 #region Constructors
58 public OperationBinding ()
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;
69 #endregion // Constructors
71 #region Properties
73 // [XmlIgnore]
74 public Binding Binding {
75 get { return binding; }
78 [XmlIgnore]
79 public
80 #if NET_2_0
81 override
82 #endif
83 ServiceDescriptionFormatExtensionCollection Extensions {
84 get { return extensions; }
87 [XmlElement ("fault")]
88 public FaultBindingCollection Faults {
89 get { return faults; }
92 [XmlElement ("input")]
93 public InputBinding Input {
94 get { return input; }
95 set {
96 input = value;
97 if (input != null)
98 input.SetParent (this);
102 #if !NET_2_0
103 [XmlAttribute ("name", DataType = "NCName")]
104 public string Name {
105 get { return name; }
106 set { name = value; }
108 #endif
110 [XmlElement ("output")]
111 public OutputBinding Output {
112 get { return output; }
113 set {
114 output = value;
115 if (output != null)
116 output.SetParent (this);
120 #endregion // Properties
122 #region Methods
124 internal void SetParent (Binding binding)
126 this.binding = binding;
129 #endregion