**** Merged from MCS ****
[mono-project.git] / mcs / class / System.Web.Services / System.Web.Services.Description / OperationBinding.cs
blob3ac29b28043e4897bb43bc37605ed735c435a3e4
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 ServiceDescriptionFormatExtensionCollection Extensions {
80 get { return extensions; }
83 [XmlElement ("fault")]
84 public FaultBindingCollection Faults {
85 get { return faults; }
88 [XmlElement ("input")]
89 public InputBinding Input {
90 get { return input; }
91 set {
92 input = value;
93 if (input != null)
94 input.SetParent (this);
98 #if !NET_2_0
99 [XmlAttribute ("name", DataType = "NCName")]
100 public string Name {
101 get { return name; }
102 set { name = value; }
104 #endif
106 [XmlElement ("output")]
107 public OutputBinding Output {
108 get { return output; }
109 set {
110 output = value;
111 if (output != null)
112 output.SetParent (this);
116 #endregion // Properties
118 #region Methods
120 internal void SetParent (Binding binding)
122 this.binding = binding;
125 #endregion