2006-11-02 Atsushi Enomoto <atsushi@ximian.com>
[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 ServiceDescriptionFormatExtensionCollection Extensions {         \r
80                         get { return extensions; }\r
81                 }\r
82 \r
83 #if !NET_2_0\r
84                 [XmlAttribute ("name", DataType = "NCName")]    \r
85                 public string Name {\r
86                         get { return name; }\r
87                         set { name = value; }\r
88                 }\r
89 #endif\r
90 \r
91 //              [XmlIgnore]\r
92                 public Service Service {\r
93                         get { return service; }\r
94                 }\r
95 \r
96                 #endregion // Properties\r
97 \r
98                 #region Methods\r
99 \r
100                 internal void SetParent (Service service) \r
101                 {\r
102                         this.service = service;\r
103                 }\r
104 \r
105                 #endregion\r
106         }\r
107 }\r