Rss20ItemFormatter 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
此類別可將 SyndicationItem 執行個體序列化為 RSS 2.0 格式,或自 RSS 2.0 序列化為原來的執行個體。
public ref class Rss20ItemFormatter : System::ServiceModel::Syndication::SyndicationItemFormatter, System::Xml::Serialization::IXmlSerializable
public class Rss20ItemFormatter : System.ServiceModel.Syndication.SyndicationItemFormatter, System.Xml.Serialization.IXmlSerializable
type Rss20ItemFormatter = class
inherit SyndicationItemFormatter
interface IXmlSerializable
Public Class Rss20ItemFormatter
Inherits SyndicationItemFormatter
Implements IXmlSerializable
- 繼承
- 衍生
- 實作
範例
下列程式碼會示範如何建立 SyndicationItem 執行個體並將其序列化。
SyndicationItem item = new SyndicationItem("Test Item", "This is the content for Test Item", new Uri("http://Contoso/ItemOne"), "TestItemID", DateTime.Now);
item.Links.Add(new SyndicationLink(new Uri("http://Contoso"), "alternate", "MyItemLink", "text/html", 100));
item.PublishDate = new DateTime(1968, 2, 23);
item.LastUpdatedTime = DateTime.Today;
item.SourceFeed = new SyndicationFeed();
item.Summary = new TextSyndicationContent("This the item summary");
XmlWriter rssWriter = XmlWriter.Create("RssItem.xml");
Rss20ItemFormatter formatter = new Rss20ItemFormatter(item);
formatter.WriteTo(rssWriter);
rssWriter.Close();
Dim item As SyndicationItem = New SyndicationItem("Test Item", "This is the content for Test Item", New Uri("http://Contoso/ItemOne"), "TestItemID", DateTime.Now)
item.Links.Add(New SyndicationLink(New Uri("http://Contoso"), "alternate", "MyItemLink", "text/html", 100))
item.PublishDate = New DateTime(1968, 2, 23)
item.LastUpdatedTime = DateTime.Today
item.SourceFeed = New SyndicationFeed()
item.Summary = New TextSyndicationContent("This the item summary")
Dim rssWriter As XmlWriter = XmlWriter.Create("RssItem.xml")
Dim formatter As Rss20ItemFormatter = New Rss20ItemFormatter(item)
formatter.WriteTo(rssWriter)
rssWriter.Close()
備註
您可以使用此類別序列化 SyndicationItem 的執行個體,並且從表示 RSS 2.0 項目的 XML 文件,建立 SyndicationItem 的執行個體。 若您自 SyndicationItem 衍生類別並且想要將它序列化,請使用 Rss20ItemFormatter<TSyndicationItem> 格式器。
建構函式
Rss20ItemFormatter() |
建立 Rss20ItemFormatter 類別的新執行個體。 |
Rss20ItemFormatter(SyndicationItem) |
建立 Rss20ItemFormatter 類別的新執行個體。 |
Rss20ItemFormatter(SyndicationItem, Boolean) |
建立 Rss20ItemFormatter 類別的新執行個體。 |
Rss20ItemFormatter(Type) |
建立 Rss20ItemFormatter 類別的新執行個體。 |
屬性
Item |
取得與這個格式器相關聯的 SyndicationItem。 (繼承來源 SyndicationItemFormatter) |
ItemType |
取得與 Rss20ItemFormatter相關聯的新聞訂閱項目類型。 |
PreserveAttributeExtensions |
取得或設定一個值,這個值會指定序列化期間是否保留屬性延伸。 |
PreserveElementExtensions |
取得或設定一個值,這個值會指定序列化期間是否保留項目延伸。 |
SerializeExtensionsAsAtom |
取得或設定值,指定是否要在 Atom 1.0 命名空間中序列化延伸模組。 |
Version |
取得格式器所使用的新聞訂閱版本。 |
方法
明確介面實作
IXmlSerializable.GetSchema() |
實作 GetSchema() 方法。 |
IXmlSerializable.ReadXml(XmlReader) |
實作 ReadXml(XmlReader) 方法。 |
IXmlSerializable.WriteXml(XmlWriter) |
實作 WriteXml(XmlWriter) 方法。 |