Rss20ItemFormatter.WriteTo(XmlWriter) Método

Definición

Escribe el SyndicationItem asociado con Rss20FeedFormatter para el XmlWriter especificado.

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)

Parámetros

writer
XmlWriter

XmlWriter en el que se va a escribir.

Ejemplos

El siguiente código muestra cómo crear una fuente de distribución y utilizar un Rss20ItemFormatter para escribir el elemento en un 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();

Se aplica a