2008-03-12 Jb Evain <jbevain@novell.com>
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Description / MessagePart.cs
1 // 
2 // System.Web.Services.Description.MessagePart.cs
3 //
4 // Author:
5 //   Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2002
8 //
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
31 using System.Xml;
32 using System.Xml.Serialization;
33 using System.Web.Services.Configuration;
34
35 namespace System.Web.Services.Description 
36 {
37 #if NET_2_0
38         [XmlFormatExtensionPoint ("Extensions")]
39 #endif
40         public sealed class MessagePart :
41 #if NET_2_0
42                 NamedItem
43 #else
44                 DocumentableItem 
45 #endif
46         {
47
48                 #region Fields
49
50                 XmlQualifiedName element;
51                 Message message;
52 #if !NET_2_0
53                 string name;
54 #endif
55                 XmlQualifiedName type;
56 #if NET_2_0
57                 ServiceDescriptionFormatExtensionCollection extensions;
58 #endif
59
60                 #endregion // Fields
61
62                 #region Constructors
63                 
64                 public MessagePart ()
65                 {
66                         element = XmlQualifiedName.Empty;
67                         message = null;
68 #if !NET_2_0
69                         name = String.Empty;
70 #endif
71                         type = XmlQualifiedName.Empty;
72 #if NET_2_0
73                         extensions = new ServiceDescriptionFormatExtensionCollection (this);
74 #endif
75                 }
76                 
77                 #endregion // Constructors
78
79                 #region Properties
80
81                 [XmlAttribute ("element")]
82                 public XmlQualifiedName Element {
83                         get { return element; }
84                         set { element = value; }
85                 }
86                 
87 //              [XmlIgnore]
88                 public Message Message {
89                         get { return message; }
90                 }
91         
92 #if !NET_2_0
93                 [XmlAttribute ("name", DataType = "NMTOKEN")]
94                 public string Name {
95                         get { return name; }
96                         set { name = value; }
97                 }
98 #endif
99
100                 [XmlAttribute ("type")]
101                 public XmlQualifiedName Type {
102                         get { return type; }
103                         set { type = value; }
104                 }
105                 
106                 internal bool DefinedByType {
107                         get { return type != null && type != XmlQualifiedName.Empty; }
108                 }
109
110                 internal bool DefinedByElement {
111                         get { return element != null && element != XmlQualifiedName.Empty; }
112                 }
113
114 #if NET_2_0
115                 [XmlIgnore]
116                 public override ServiceDescriptionFormatExtensionCollection Extensions {
117                         get { return extensions; }
118                 }
119 #endif
120
121                 #endregion // Properties
122
123                 #region Methods
124
125                 internal void SetParent (Message message)
126                 {
127                         this.message = message; 
128                 }
129
130                 #endregion // Methods
131
132         }
133 }