UnityEditor.AndroidXmlDocument.AppendElement C# (CSharp) Method

AppendElement() protected method

protected AppendElement ( XmlElement node, string tag, string attribute ) : XmlElement
node System.Xml.XmlElement
tag string
attribute string
return System.Xml.XmlElement
        protected XmlElement AppendElement(XmlElement node, string tag, string attribute)
        {
            if (node.SelectSingleNode(string.Format(".//{0}[@{1}]", tag, attribute), this.nsMgr) != null)
            {
                return null;
            }
            return (XmlElement) node.AppendChild(base.CreateElement(tag));
        }

Same methods

AndroidXmlDocument::AppendElement ( XmlElement node, string tag, string attribute, string attributeValue ) : XmlElement