Condividi tramite


SyndicationFeed.Copyright Proprietà

Definizione

Ottiene o imposta le informazioni sul copyright per il 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

Valore della proprietà

Un oggetto SyndicationContent che rappresenta le informazioni sul copyright per il feed.

Esempio

Nel codice seguente viene illustrato come impostare le informazioni sul copyright per 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")

Nel codice XML seguente viene mostrato come serializzare Copyright per il formato Atom 1.0.

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

Nel codice XML seguente viene mostrato come serializzare Copyright per il formato RSS 2.0.

<copyright>Copyright 2007</copyright>

Commenti

Quando serializzato in Atom 1.0, viene Copyright scritto in un <rights> elemento.

Quando serializzato in RSS 2.0, viene Copyright scritto in un <copyright> elemento.

Si applica a