Condividi tramite


SyndicationFeed.Copyright Proprietà

Definizione

Ottiene o imposta 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à

Oggetto SyndicationContent che rappresenta le informazioni sul copyright per il feed.

Esempio

Nel codice seguente viene illustrato come impostare le informazioni sul copyright per un oggetto 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 seguente XML viene illustrato come Copyright viene serializzato nel formato Atom 1.0.

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

Nel codice XML seguente viene illustrato come serializzare Copyright in RSS 2.0.

<copyright>Copyright 2007</copyright>

Commenti

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

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

Si applica a