Class Message
Represents the XMPP message.
Inherited Members
Namespace: FastReport.Messaging.Xmpp
Assembly: FastReport.dll
Syntax
public class Message : Stanza
Constructors
Message(String, String, String, String, String, CultureInfo, List<XmlElement>)
Initializes a new instance of the Message class with specified parameters.
Declaration
public Message(string nspace, string type, string jidFrom, string jidTo, string id, CultureInfo language, List<XmlElement> data)
Parameters
Type | Name | Description |
---|---|---|
System.String | nspace | The namespace of the message. |
System.String | type | The type of message. |
System.String | jidFrom | The JID of the sender. |
System.String | jidTo | The JID of the recipient. |
System.String | id | The ID of the message. |
System.Globalization.CultureInfo | language | The language of the message. |
System.Collections.Generic.List<System.Xml.XmlElement> | data | The data of the message. |
Message(XmlElement)
Initializes a new instance of the Message class using specified XmlElement instance.
Declaration
public Message(XmlElement data)
Parameters
Type | Name | Description |
---|---|---|
System.Xml.XmlElement | data | The XmlElement instance using like a data. |
Properties
Type
Gets or sets the type of message.
Declaration
public string Type { get; set; }
Property Value
Type | Description |
---|---|
System.String |