merge r67228-r67235, r67237, r67251 and r67256-67259 to trunk (they are
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Description / Port.cs
1 // \r
2 // System.Web.Services.Description.Port.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;\r
33 using System.Xml.Serialization;\r
34 \r
35 namespace System.Web.Services.Description \r
36 {\r
37         [XmlFormatExtensionPoint ("Extensions")]\r
38         public sealed class Port :\r
39 #if NET_2_0\r
40                 NamedItem\r
41 #else\r
42                 DocumentableItem \r
43 #endif\r
44         {\r
45                 #region Fields\r
46 \r
47                 XmlQualifiedName binding;\r
48                 ServiceDescriptionFormatExtensionCollection extensions;\r
49 #if !NET_2_0\r
50                 string name;\r
51 #endif\r
52                 Service service;\r
53 \r
54                 #endregion // Fields\r
55 \r
56                 #region Constructors\r
57                 \r
58                 public Port ()\r
59                 {\r
60                         binding = null;\r
61                         extensions = new ServiceDescriptionFormatExtensionCollection (this);\r
62 #if !NET_2_0\r
63                         name = String.Empty;\r
64 #endif\r
65                         service = null;\r
66                 }\r
67                 \r
68                 #endregion // Constructors\r
69 \r
70                 #region Properties\r
71 \r
72                 [XmlAttribute ("binding")]\r
73                 public XmlQualifiedName Binding {\r
74                         get { return binding; }\r
75                         set { binding = value; }\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 #if !NET_2_0\r
88                 [XmlAttribute ("name", DataType = "NCName")]    \r
89                 public string Name {\r
90                         get { return name; }\r
91                         set { name = value; }\r
92                 }\r
93 #endif\r
94 \r
95 //              [XmlIgnore]\r
96                 public Service Service {\r
97                         get { return service; }\r
98                 }\r
99 \r
100                 #endregion // Properties\r
101 \r
102                 #region Methods\r
103 \r
104                 internal void SetParent (Service service) \r
105                 {\r
106                         this.service = service;\r
107                 }\r
108 \r
109                 #endregion\r
110         }\r
111 }\r