XmlDocument - carregar da string?

88
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);
}

Em vez de carregar o xml de um arquivo, como faço para carregá-lo de uma string?

001
fonte
3
Procure a XmlDocumentclasse . Você descobrirá por si mesmo muito rapidamente.
John Saunders
1
LoadXml()- msdn.microsoft.com/en-us/library/…
Dan Atkinson

Respostas:

208
XmlDocument doc = new XmlDocument();
doc.LoadXml(str);

Onde strestá sua string XML. Veja o artigo do MSDN para obter mais informações.

Wsanville
fonte
E quanto ao novo XmlDocument () {InnerXml = str}?
mko
Acho que LoadXml()faz mais do que apenas definir InnerXml. referênciasource.microsoft.com
System.Xml