static bool IsValidXmlString(string text) { try { XmlConvert.VerifyXmlChars(text); return(true); } catch { return(false); } }