SyndicationFeed.Copyright Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit les informations de copyright pour le flux.
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é
Objet SyndicationContent représentant les informations de copyright pour le flux.
Exemples
Le code suivant illustre la définition des données relatives au copyright pour un objet 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")
Le code XML suivant montre comment Copyright est sérialisé vers Atom 1.0.
<rights type="text">Copyright 2007</rights>
<rights type="text">Copyright 2007</rights>
Le code XML suivant montre comment Copyright est sérialisé vers RSS 2.0.
<copyright>Copyright 2007</copyright>
Remarques
Lorsqu’il est sérialisé sur Atom 1.0, il Copyright est écrit dans un <rights>
élément.
Lorsqu’il est sérialisé dans RSS 2.0, il Copyright est écrit dans un <copyright>
élément.