Rss20FeedFormatter<TSyndicationFeed> 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
此類別可將 SyndicationFeed 衍生類別序列化為 RSS 2.0 格式。
generic <typename TSyndicationFeed>
where TSyndicationFeed : SyndicationFeedgcnew()public ref class Rss20FeedFormatter : System::ServiceModel::Syndication::Rss20FeedFormatter
public class Rss20FeedFormatter<TSyndicationFeed> : System.ServiceModel.Syndication.Rss20FeedFormatter where TSyndicationFeed : SyndicationFeed, new()
type Rss20FeedFormatter<'SyndicationFeed (requires 'SyndicationFeed :> SyndicationFeed and 'SyndicationFeed : (new : unit -> 'SyndicationFeed))> = class
inherit Rss20FeedFormatter
Public Class Rss20FeedFormatter(Of TSyndicationFeed)
Inherits Rss20FeedFormatter
類型參數
- TSyndicationFeed
要序列化的 SyndicationFeed 衍生型別。
- 繼承
範例
下列程式碼範例會示範如何建立 SyndicationFeed 衍生類別,並將這個類別序列化為 RSS 2.0。
MySyndicationFeed feed = new MySyndicationFeed("Test Feed",
"This is a test feed", new Uri("http://Contoso/testfeed"), "TestFeedID", DateTime.Now);
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 = feed;
item.Summary = new TextSyndicationContent("This the item summary");
List<SyndicationItem> items = new List<SyndicationItem>();
items.Add(item);
feed.Items = items;
XmlWriter rssWriter = XmlWriter.Create("Rss.xml");
Rss20FeedFormatter<MySyndicationFeed> rssFormatter = new Rss20FeedFormatter<MySyndicationFeed>(feed);
rssFormatter.WriteTo(rssWriter);
rssWriter.Close();
Dim feed As MySyndicationFeed = New MySyndicationFeed("Test Feed", "This is a test feed", New Uri("http://Contoso/testfeed"), "TestFeedID", DateTime.Now)
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 = feed
item.Summary = New TextSyndicationContent("This the item summary")
Dim items As List(Of SyndicationItem) = New List(Of SyndicationItem)()
items.Add(item)
feed.Items = items
Dim rssWriter As XmlWriter = XmlWriter.Create("Rss.xml")
Dim rssFormatter As Rss20FeedFormatter(Of MySyndicationFeed) = New Rss20FeedFormatter(Of MySyndicationFeed)(feed)
rssFormatter.WriteTo(rssWriter)
rssWriter.Close()
備註
使用此類別序列化 SyndicationFeed 衍生類別的執行個體。 若您需要序列化 SyndicationFeed 執行個體,請轉而使用 Rss20FeedFormatter 格式器。
建構函式
屬性
DateTimeParser |
委派,SyndicationFeedFormatter 類別用以將 XmlDateTimeData 字串資料轉換為 DateTimeOffset。 (繼承來源 SyndicationFeedFormatter) |
Feed |
取得與這個格式器相關聯的 SyndicationFeed。 (繼承來源 SyndicationFeedFormatter) |
FeedType |
與 SyndicationFeed 執行個體相關聯的 Rss20FeedFormatter 衍生執行個體。 (繼承來源 Rss20FeedFormatter) |
PreserveAttributeExtensions |
取得或設定一個值,這個值會指定序列化期間是否保留屬性延伸。 (繼承來源 Rss20FeedFormatter) |
PreserveElementExtensions |
取得或設定一個值,這個值會指定序列化期間是否保留項目延伸。 (繼承來源 Rss20FeedFormatter) |
SerializeExtensionsAsAtom |
取得或設定值,指定是否要在 Atom 1.0 命名空間中序列化延伸模組。 (繼承來源 Rss20FeedFormatter) |
UriParser |
委派,SyndicationFeedFormatter 類別用以從字串輸入建立 Uri 執行個體。 (繼承來源 SyndicationFeedFormatter) |
Version |
取得格式器所使用的新聞訂閱版本。 (繼承來源 Rss20FeedFormatter) |