SyndicationItem.Copyright Eigenschaft

Definition

Ruft die Copyrightinformationen für das Syndication-Element ab oder legt sie fest.

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

Eigenschaftswert

TextSyndicationContent

Eine TextSyndicationContent-Instanz, die für Copyright-Informationen steht.

Beispiele

Im folgenden Codebeispiel wird veranschaulicht, wie einem SyndicationItem Copyrightinformationen hinzugefügt werden.

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

Das folgende XML-Beispiel zeigt, wie diese Eigenschaft zu Atom 1.0 serialisiert wird.

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

Das folgende XML-Beispiel zeigt, wie diese Eigenschaft zu RSS 2.0 serialisiert wird.

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

Hinweise

Bei der Serialisierung zu Atom 1.0 wird diese Eigenschaft in ein <rights>-Element geschrieben. Bei der Serialisierung zu RSS 2.0 wird diese Eigenschaft in ein <a10:rights>-Element geschrieben.

Gilt für