2010-04-15 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.Web.Services / System.Web.Services.Description / MessagePart.cs
blobd87b0d11e92b4aaf3d2d40beade1abaadfd628cd
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 //
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.Xml;
32 using System.Xml.Serialization;
33 using System.Web.Services.Configuration;
35 namespace System.Web.Services.Description
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
48 #region Fields
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
60 #endregion // Fields
62 #region Constructors
64 public MessagePart ()
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
77 #endregion // Constructors
79 #region Properties
81 [XmlAttribute ("element")]
82 public XmlQualifiedName Element {
83 get { return element; }
84 set { element = value; }
87 // [XmlIgnore]
88 public Message Message {
89 get { return message; }
92 #if !NET_2_0
93 [XmlAttribute ("name", DataType = "NMTOKEN")]
94 public string Name {
95 get { return name; }
96 set { name = value; }
98 #endif
100 [XmlAttribute ("type")]
101 public XmlQualifiedName Type {
102 get { return type; }
103 set { type = value; }
106 internal bool DefinedByType {
107 get { return type != null && type != XmlQualifiedName.Empty; }
110 internal bool DefinedByElement {
111 get { return element != null && element != XmlQualifiedName.Empty; }
114 #if NET_2_0
115 [XmlIgnore]
116 public override ServiceDescriptionFormatExtensionCollection Extensions {
117 get { return extensions; }
119 #endif
121 #endregion // Properties
123 #region Methods
125 internal void SetParent (Message message)
127 this.message = message;
130 #endregion // Methods