jabber.connection.PubSubNode.this C# (CSharp) Method

this() public method

Returns the contents of the specified item
public this ( string id ) : XmlElement
id string Index of the element to retrieve.
return XmlElement
        public XmlElement this[string id]
        {
            get { return m_items[id]; }
            set
            {
                // TODO: publish, and reset ID when it comes back.
                m_items[id] = value;
            }
        }

Same methods

PubSubNode::this ( Op op ) : STATE