Partager via


SyndicationItem.Copyright Propriété

Définition

Obtient ou définit les informations de copyright pour l’élément de syndication.

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

Valeur de propriété

TextSyndicationContent

Instance TextSyndicationContent représentant des informations de copyright.

Exemples

Le code suivant illustre l'ajout de données relatives au copyright à SyndicationItem.

SyndicationItem item = new SyndicationItem("Item Title", "Item Content", new Uri("http://Item/Alternate/Link"));
item.Copyright = new TextSyndicationContent("Copyright 2007 Contoso");
Dim item As New SyndicationItem("Item Title", "Item Content", New Uri("http:' Item/Alternate/Link"))
item.Copyright = New TextSyndicationContent("Copyright 2007 Contoso")

Le code XML suivant montre comment cette propriété est sérialisée vers Atom 1.0.

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

Le code XML suivant montre comment cette propriété est sérialisée vers RSS 2.0.

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

Remarques

Lorsqu'elle est sérialisée vers Atom 1.0, cette propriété est écrite dans un élément <rights>. Lorsqu'elle est sérialisée au format RSS 2.0, cette propriété est écrite dans un élément <a10:rights>.

S’applique à