ParseXml() public static method

public static ParseXml ( string xml, bool isDoc ) : XmlNode
xml string
isDoc bool
return System.Xml.XmlNode
Example #1
0
 public static XDom LoadXml(string xml, bool isDoc)
 {
     return(LoadXml(XDom.ParseXml(xml, isDoc)));
 }