using System;
using System.Collections.Generic;
using System.Text;
using System.Globalization;
using System.Xml;
namespace FastReport.Messaging.Xmpp
{
///
/// Represents the XMPP Presence.
///
public class Presence : Stanza
{
#region Constructors
///
/// Initializes a new instance of the class with specified parameters.
///
/// The namespace of the presence.
/// The JID of the sender.
/// The JID of the recipient.
/// The ID of the presence.
/// The language of the presence.
/// The data of the presence.
public Presence(string nspace, string jidFrom, string jidTo, string id, CultureInfo language, List data)
: base(nspace, jidFrom, jidTo, id, language, data)
{
}
///
/// Initializes a new instance of the class using specified XmlElement instance.
///
/// The XmlElement instance using like a data.
public Presence(XmlElement data) : base(data)
{
}
#endregion // Constructors
}
}