Rss20ItemFormatter.WriteTo(XmlWriter) Method

Definition

Writes the SyndicationItem associated with the Rss20FeedFormatter to the specified XmlWriter.

public:
 override void WriteTo(System::Xml::XmlWriter ^ writer);
public override void WriteTo (System.Xml.XmlWriter writer);
override this.WriteTo : System.Xml.XmlWriter -> unit
Public Overrides Sub WriteTo (writer As XmlWriter)

Parameters

writer
XmlWriter

The XmlWriter to write to.

Examples

The following code shows how to create a syndication feed and use a Rss20ItemFormatter to write the item to an XmlWriter.

SyndicationItem item = new SyndicationItem("Test Item", "This is the content for Test Item", new Uri("http://Contoso/ItemOne"), "TestItemID", DateTime.Now);

XmlWriter rssWriter = XmlWriter.Create("RSS.xml");
Rss20ItemFormatter rssFormatter = new Rss20ItemFormatter(item);

rssFormatter.WriteTo(rssWriter);
rssWriter.Close();

Applies to