123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Globalization;
- using System.Xml;
- namespace FastReport.Messaging.Xmpp
- {
- /// <summary>
- /// Represents the XMPP message.
- /// </summary>
- public class Message : Stanza
- {
- #region Fields
- private string type;
- #endregion // Fields
- #region Properties
- /// <summary>
- /// Gets or sets the type of message.
- /// </summary>
- public string Type
- {
- get { return type; }
- set
- {
- type = value;
- if (value == null)
- {
- Data.RemoveAttribute("type");
- }
- else
- {
- Data.SetAttribute("type", value);
- }
- }
- }
- #endregion // Properties
- #region Constructors
- /// <summary>
- /// Initializes a new instance of the <see cref="Message"/> class with specified parameters.
- /// </summary>
- /// <param name="nspace">The namespace of the message.</param>
- /// <param name="type">The type of message.</param>
- /// <param name="jidFrom">The JID of the sender.</param>
- /// <param name="jidTo">The JID of the recipient.</param>
- /// <param name="id">The ID of the message.</param>
- /// <param name="language">The language of the message.</param>
- /// <param name="data">The data of the message.</param>
- public Message(string nspace, string type, string jidFrom, string jidTo, string id, CultureInfo language, List<XmlElement> data)
- : base(nspace, jidFrom, jidTo, id, language, data)
- {
- Type = type;
- }
- /// <summary>
- /// Initializes a new instance of the <see cref="Message"/> class using specified XmlElement instance.
- /// </summary>
- /// <param name="data">The XmlElement instance using like a data.</param>
- public Message(XmlElement data) : base(data)
- {
- }
- #endregion // Constructors
- }
- }
|