Condividi tramite


Rss20ItemFormatter.WriteTo(XmlWriter) Metodo

Definizione

Scrive l'oggetto SyndicationItem associato a Rss20FeedFormatter nell'oggetto XmlWriter specificato.

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)

Parametri

writer
XmlWriter

XmlWriter in cui scrivere.

Esempio

Nel codice seguente viene illustrato come creare un feed di diffusione e utilizzare Rss20ItemFormatter per scrivere l'elemento in un oggetto 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();

Si applica a