SyndicationFeed.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

一个表示源版权信息的 SyndicationContent 对象。

示例

下面的代码演示如何设置 SyndicationFeed 的版权信息。

SyndicationFeed feed = new SyndicationFeed("Feed Title", "Feed Description", new Uri("http://Feed/Alternate/Link"), "FeedID", DateTime.Now);
feed.Copyright = new TextSyndicationContent("Copyright 2007");
Dim feed As New SyndicationFeed("Feed Title", "Feed Description", New Uri("http:'Feed/Alternate/Link"), "FeedID", DateTime.Now)
feed.Copyright = New TextSyndicationContent("Copyright 2007")

下面的 XML 演示如何将 Copyright 序列化为 Atom 1.0。

<rights type="text">Copyright 2007</rights>
<rights type="text">Copyright 2007</rights>  

下面的 XML 演示如何按照 RSS 2.0 序列化 Copyright

<copyright>Copyright 2007</copyright>

注解

序列化为 Atom 1.0 时,将 Copyright 写入 <rights> 元素。

序列化为 RSS 2.0 时,将 Copyright 写入 <copyright> 元素。

适用于