* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Description / Message.cs
1 // \r
2 // System.Web.Services.Description.Message.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.Collections;\r
32 using System.Web.Services;\r
33 using System.Web.Services.Configuration;\r
34 using System.Xml.Serialization;\r
35 \r
36 namespace System.Web.Services.Description \r
37 {\r
38 #if NET_2_0\r
39         [XmlFormatExtensionPoint ("Extensions")]\r
40 #endif\r
41         public sealed class Message :\r
42 #if NET_2_0\r
43                 NamedItem\r
44 #else\r
45                 DocumentableItem \r
46 #endif\r
47         {\r
48                 #region Fields\r
49 \r
50 #if !NET_2_0\r
51                 string name;\r
52 #endif\r
53                 MessagePartCollection parts;\r
54                 ServiceDescription serviceDescription;\r
55 #if NET_2_0
56                 ServiceDescriptionFormatExtensionCollection extensions;\r
57 #endif
58 \r
59                 #endregion // Fields\r
60 \r
61                 #region Constructors\r
62                 \r
63                 public Message ()\r
64                 {\r
65 #if !NET_2_0\r
66                         name = String.Empty;\r
67 #endif\r
68 #if NET_2_0
69                         extensions = new ServiceDescriptionFormatExtensionCollection (this);\r
70 #endif
71                         parts = new MessagePartCollection (this);\r
72                         serviceDescription = null;\r
73                 }\r
74                 \r
75                 #endregion // Constructors\r
76 \r
77                 #region Properties\r
78 \r
79 #if !NET_2_0\r
80                 [XmlAttribute ("name", DataType = "NCName")]\r
81                 public string Name {\r
82                         get { return name; }\r
83                         set { name = value; }\r
84                 }\r
85 #endif\r
86 \r
87                 [XmlElement ("part")]\r
88                 public MessagePartCollection Parts {\r
89                         get { return parts; }\r
90                 }\r
91 \r
92 //              [XmlIgnore]\r
93                 public ServiceDescription ServiceDescription {\r
94                         get { return serviceDescription; }\r
95                 }\r
96
97 #if NET_2_0
98                 [XmlIgnore]
99                 public override ServiceDescriptionFormatExtensionCollection Extensions {
100                         get { return extensions; }\r
101                 }\r
102 #endif
103
104                 #endregion // Properties\r
105 \r
106                 #region Methods\r
107 \r
108                 public MessagePart FindPartByName (string partName)\r
109                 {\r
110                         return parts [partName];\r
111                 }\r
112 \r
113                 public MessagePart[] FindPartsByName (string[] partNames) \r
114                 {\r
115                         ArrayList searchResults = new ArrayList ();\r
116 \r
117                         foreach (string partName in partNames)\r
118                                 searchResults.Add (FindPartByName (partName));\r
119 \r
120                         int count = searchResults.Count;\r
121 \r
122                         if (count == 0)\r
123                                 throw new ArgumentException ();\r
124 \r
125                         MessagePart[] returnValue = new MessagePart[count];\r
126                         searchResults.CopyTo (returnValue);\r
127                         return returnValue;\r
128                 }\r
129 \r
130                 internal void SetParent (ServiceDescription serviceDescription)\r
131                 {\r
132                         this.serviceDescription = serviceDescription;\r
133                 }\r
134 \r
135                 #endregion\r
136         }\r
137 }\r