vote up 7 vote down star
1

I'm working on a little something and I am trying to figure out whether I can load an XDocument from a string. XDocument.Load() seems to take the string passed to it as a path to a physical XML file.

I want to try and bypass the step of first having to create the physical XML file and jump straight to populating the XDocument.

Any ideas?

flag

5 Answers

vote up 12 vote down check

Take a look at XDocument.Parse.

link|flag
thanks a million! Can't believe I overlooked it! – FailBoy Apr 14 at 13:32
vote up 4 vote down

You can use XDocument.Parse(string) instead of Load(string).

link|flag
vote up 1 vote down

Try the Parse method.

link|flag
vote up 4 vote down

How about this...?

TextReader tr = new StringReader("<Root>Content</Root>");
XDocument doc = XDocument.Load(tr);
Console.WriteLine(doc);

This was taken from the MSDN docs for XDocument.Load, found here...

http://msdn.microsoft.com/en-us/library/bb299692.aspx

link|flag
But, as pointed out in other answers, Parse is the way to do this. – Martin Peck Apr 14 at 13:30
Actually, Parse internally uses a StringReader. – Samuel Apr 14 at 13:36
vote up 0 vote down

this is exactly what i was looking for thanks

link|flag
Add a comment instead of a new answer to this question – Francis B. Aug 28 at 14:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.