SyndicationFeed.Copyright Egenskap

Definition

Hämtar eller anger upphovsrättsinformation för flödet.

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

Egenskapsvärde

Ett SyndicationContent objekt som representerar upphovsrättsinformation för flödet.

Exempel

Följande kod visar hur du anger upphovsrättsinformation för en 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")

Följande XML visar hur Copyright serialiseras till Atom 1.0.

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

Följande XML visar hur Copyright serialiseras till RSS 2.0.

<copyright>Copyright 2007</copyright>

Kommentarer

När serialiseras till Atom 1.0 skrivs den Copyright till ett <rights> element.

När serialiseras till RSS 2.0 skrivs den Copyright till ett <copyright> element.

Gäller för