SyndicationItem.Copyright 属性

定义

获取或设置联合项的版权信息。

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> 元素。

适用于