SyndicationFeed.Copyright Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets copyright information for the feed.
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
Property Value
A SyndicationContent object that represents copyright information for the feed.
Examples
The following code shows how to set the copyright information for a 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")
The following XML shows how the Copyright is serialized to Atom 1.0.
<rights type="text">Copyright 2007</rights>
<rights type="text">Copyright 2007</rights>
The following XML shows how the Copyright is serialized to RSS 2.0.
<copyright>Copyright 2007</copyright>
Remarks
When serialized to Atom 1.0, the Copyright is written to a <rights>
element.
When serialized to RSS 2.0, the Copyright is written to a <copyright>
element.