SyndicationFeed.Id 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定摘要的識別碼。
public:
property System::String ^ Id { System::String ^ get(); void set(System::String ^ value); };
public string Id { get; set; }
member this.Id : string with get, set
Public Property Id As String
屬性值
摘要的識別碼。
範例
下列程式碼會示範如何設定 Id 執行個體的 SyndicationFeed 屬性。
SyndicationFeed feed = new SyndicationFeed("Feed Title", "Feed Description", new Uri("http://Feed/Alternate/Link"), "FeedID", DateTime.Now);
feed.Id = "SyndicationFeedId";
Dim feed As New SyndicationFeed("Feed Title", "Feed Description", New Uri("http:'Feed/Alternate/Link"), "FeedID", DateTime.Now)
feed.Id = "SyndicationFeedId"
下列 XML 會示範 Id 屬性如何序列化為 Atom 1.0。
<id>FeedID</id>
下列 XML 會說明 Id 屬性如何序列化為 RSS 2.0。
<a10:id>FeedID</a10:id>
備註
當序列化為 Atom 1.0 時,會將 Id 寫入專案 <id>
。
序列化為 RSS 2.0 時,會將 Id 寫入專案 <a10:id>
。