public xml_node add_node(string name, string text, Dictionary <string, string> attrs) { xml_node nd = add_node(name); if (nd != null) { nd.text = !string.IsNullOrEmpty(text) ? text : ""; nd.set_attrs(attrs); } return(nd); }
public xml_node add_node(string name, Dictionary <string, string> attrs) { xml_node nd = add_node(name); if (nd != null) { nd.set_attrs(attrs); } return(nd); }
public xml_node add_node(string name, string text, string[] attrs) { xml_node nd = add_node(name); if (nd != null) { nd.text = text; if (attrs != null) { nd.set_attrs(attrs); } } return(nd); }