SyndicationItem.Copyright 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定新聞訂閱項目的著作權資訊。
public:
property System::ServiceModel::Syndication::TextSyndicationContent ^ Copyright { System::ServiceModel::Syndication::TextSyndicationContent ^ get(); void set(System::ServiceModel::Syndication::TextSyndicationContent ^ value); };
public System.ServiceModel.Syndication.TextSyndicationContent Copyright { get; set; }
member this.Copyright : System.ServiceModel.Syndication.TextSyndicationContent with get, set
Public Property Copyright As TextSyndicationContent
屬性值
表示著作權資訊的 TextSyndicationContent 執行個體。
範例
下列程式碼會示範如何將著作權資訊加入至 SyndicationItem。
SyndicationItem item = new SyndicationItem("Item Title", "Item Content", new Uri("http://Item/Alternate/Link"));
item.Copyright = new TextSyndicationContent("Copyright 2007 Contoso");
Dim item As New SyndicationItem("Item Title", "Item Content", New Uri("http:' Item/Alternate/Link"))
item.Copyright = New TextSyndicationContent("Copyright 2007 Contoso")
下列 XML 說明如何將這個屬性序列化為 Atom 1.0。
<rights type="text">Copyright 2007</rights>
下列 XML 說明如何將這個屬性序列化為 RSS 2.0。
<a10:rights type="text">Copyright 2007</a10:rights>
備註
當序列化至 Atom 1.0 時,會將此屬性寫入 <rights>
項目。 當序列化至 RSS 2.0 時,會將此屬性寫入 <a10:rights>
項目。