4

除了 a10 之外,我还需要向我的提要的 rss(root) 元素添加新的命名空间:

<rss xmlns:a10="http://www.w3.org/2005/Atom" version="2.0">
    <channel>
.
.
.

我正在使用序列化为 RSS 2.0 的 SyndicationFeed 类,并使用 XmlWriter 输出提要,

var feed = new SyndicationFeed(
                    feedDefinition.Title,
                    feedDefinition.Description,
     .
     .
     .



using (var writer = XmlWriter.Create(context.HttpContext.Response.Output, settings))
        {
            rssFormatter.WriteTo(writer);
        }

我尝试在 SyndicationFeed 上添加 AttributeExtensions ,但它将新命名空间添加到通道元素而不是根,

谢谢

4

1 回答 1

4

不幸的是,格式化程序无法按照您需要的方式进行扩展。

您可以使用中间 XmlDocument 并在写入最终输出之前对其进行修改。

此代码将向最终 xml 输出的根元素添加命名空间:

var feed = new SyndicationFeed("foo", "bar", new Uri("http://www.example.com"));
var rssFeedFormatter = new Rss20FeedFormatter(feed);

// Create a new  XmlDocument in order to modify the root element
var xmlDoc = new XmlDocument();

// Write the RSS formatted feed directly into the xml doc
using(var xw = xmlDoc.CreateNavigator().AppendChild() )
{
    rssFeedFormatter.WriteTo(xw);
}

// modify the document as you want
xmlDoc.DocumentElement.SetAttribute("xmlns:example", "www.example.com");

// now create your writer and output to it:
var sb = new StringBuilder();
using (XmlWriter writer = XmlWriter.Create(sb))
{
    xmlDoc.WriteTo(writer);
}

Console.WriteLine(sb.ToString());
于 2013-01-18T17:46:02.250 回答