単純な XML ファイルを作成しています。ルート名は「site:Root」でなければならないため、次のようにします。
private XmlDocument CreateXMLDocument()
{
XmlDocument xmlDoc = new XmlDocument();
XmlDeclaration xmlDec = xmlDoc.CreateXmlDeclaration("1.0", "ISO-8859-1", null);
xmlDoc.AppendChild(xmlDec);
XmlElement xmlRoot = xmlDoc.CreateElement("site:Root");
xmlDoc.AppendChild(xmlRoot);
return xmlDoc;
}
ただし、outerXml プロパティには、ルート名として「Root」しか表示されません。ルート名を「site:Root」にする方法を教えてください。