こんにちはすべて私はXML
ファイルを動的に生成するアプリケーションを作成しています。これで私はschemalocation
とXSI
をXML
Root
に追加したいと思います。私は、これはXMLファイルにスキーマの場所とXSIを動的に追加する方法
XML
を取得する必要がありますようにするために動的
XmlDocument doc = new XmlDocument();
XmlNode docNode = doc.CreateXmlDeclaration("1.0", "UTF-8", null);
doc.AppendChild(docNode);
XmlNode returnData = doc.CreateElement("ReturnData");
XmlAttribute documnetCount = doc.CreateAttribute("documentCount"); // after this i would like to add that schema
returnData.Attributes.Append(documnetCount);
生成された私のサンプルXML
コードです
xmlns="http://www.irs.gov/efile"
xsi:SchemaLocation="http://www.irs.goc/efile ReturnData941.xsd"
と
xmlns:xsi="http://www.w3.org/2001/XMLSchema-Instance"
以下を追加したいと思います
<?xml version="1.0" encoding="UTF-8"?>
<ReturnData documentCount="" xsi:SchemaLocation="http://www.irs.goc/efile ReturnData941.xsd" xmlns="http://www.irs.gov/efile" xmlns:xsi="http://www.w3.org/2001/XMLSchema-Instance" />
ありがとうございますscott作品 – Dotnet