Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using XDocument to describe a tree of folders' names.
Some folders have special characters, like " ' " and I get an XmlException saying such characters cannot be included in a name.
I've added the following declaration to the document's constructing:
public XDocument file= new XDocument(new XDeclaration("1.0", "utf-8", "yes"));
but I still get the exception. I'd appreciate any solution that will enable comfortable work.

Thanks.

share|improve this question

2 Answers

up vote 0 down vote accepted

You can't use those characters in element names or attribute names. You can only specify them in attribute values, XText objects or CDATA sections (so long as they are encoded of course).

share|improve this answer

Replace the ' with '.

See http://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references for a complete list.

Please note that these will not all work by default with XML (see also the Wikipedia page). Most of these have to be defined. Only the following work by default:

' => '
" => "
& => &
> => >
&lt; => <
share|improve this answer
Hi, thanks! Can you post a link to a complete collection of such characters? – Noich Nov 22 '10 at 6:51
Updated the answer. – Pieter Nov 22 '10 at 6:56
I've added those replaces, but now the same exception is thrown because of the & character... What am I doing wrong? – Noich Nov 22 '10 at 7:15
Please paste an example of the XML that is causing you problems to the question. – Pieter Nov 22 '10 at 7:27
For example, after changing "Sam's bug" to "Sam&apos;s_bug", and creating a node: XElement xNode = new XElement("Sam&apos;s_bug"); – Noich Nov 22 '10 at 9:35
show 5 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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