| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- //
- // System.Web.Services.Description.MessagePart.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System.Xml;
- using System.Xml.Serialization;
- namespace System.Web.Services.Description {
- public sealed class MessagePart : DocumentableItem {
- #region Fields
- XmlQualifiedName element;
- Message message;
- string name;
- XmlQualifiedName type;
- #endregion // Fields
- #region Constructors
-
- public MessagePart ()
- {
- element = XmlQualifiedName.Empty;
- message = null;
- name = String.Empty;
- type = XmlQualifiedName.Empty;
- }
-
- #endregion // Constructors
- #region Properties
- [XmlAttribute ("element")]
- public XmlQualifiedName Element {
- get { return element; }
- set { element = value; }
- }
-
- public Message Message {
- get { return message; }
- }
-
- [XmlAttribute ("name", DataType = "NMTOKEN")]
- public string Name {
- get { return name; }
- set { name = value; }
- }
- [XmlAttribute ("type")]
- public XmlQualifiedName Type {
- get { return type; }
- set { type = value; }
- }
- #endregion // Properties
- #region Methods
- internal void SetParent (Message message)
- {
- this.message = message;
- }
- #endregion // Methods
- }
- }
|