SyndicationFeed.Copyright Özellik

Tanım

Akış için telif hakkı bilgilerini alır veya ayarlar.

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

Özellik Değeri

SyndicationContent Akış için telif hakkı bilgilerini temsil eden bir nesne.

Örnekler

Aşağıdaki kod, bir SyndicationFeediçin telif hakkı bilgilerinin nasıl ayarlandığını gösterir.

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")

Aşağıdaki XML' nin Copyright Atom 1.0'a nasıl seri hale getirildiği gösterilmektedir.

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

Aşağıdaki XML, 'nin Copyright RSS 2.0'a nasıl seri hale getirileceğini gösterir.

<copyright>Copyright 2007</copyright>

Açıklamalar

Atom 1.0'a seri hale getirildiğinde, Copyright bir <rights> öğeye yazılır.

RSS 2.0'a seri hale getirildiğinde, Copyright bir <copyright> öğeye yazılır.

Şunlara uygulanır