web-dev-qa-db-fra.com

XmlDocument - charger depuis une chaîne?

protected void Page_Load(object sender, EventArgs e)
{
    XmlDocument doc = new XmlDocument();
    try
    {
        string path = Server.MapPath(".");
        doc.Load(path+"whatever.xml");
    }
    catch (Exception ex)
    {
        lblError.Text = ex.ToString();
        return;
    }

    // Convert XML to a JSON string
    string JSON = XmlToJSON(doc);

    // Replace \ with \\ because string is being decoded twice
    JSON = JSON.Replace(@"\", @"\\");

    // Insert code to process JSON at end of page
    ClientScriptManager cs = Page.ClientScript;
    cs.RegisterStartupScript(GetType(), "SpaceJSON", "space_processJSON('" + JSON + "');", true);
}

Au lieu de charger le XML à partir d'un fichier, comment puis-je le charger à partir d'une chaîne?

82
001
XmlDocument doc = new XmlDocument();
doc.LoadXml(str);

str est votre chaîne XML. Voir le article MSDN pour plus d'informations.

201
wsanville