LiveCodingChat.Xmpp.XmppTest.XMPP_Features C# (CSharp) Method

XMPP_Features() private method

private XMPP_Features ( XmlElement node ) : void
node System.Xml.XmlElement
return void
        private void XMPP_Features(XmlElement node)
        {
            foreach (XmlNode n in node.ChildNodes) {
                string v = n.Value;
            }
            node.Attributes.GetNamedItem ("");
            if (Authenticated)
                SendRessource ();
            else
                Login (JID,Password);
            //Login (JID.Split ('@') [0], Password);
        }