SyndicationItem.Categories Eigenschaft

Definition

Ruft die Syndication-Kategorien für dieses Syndication-Element ab.

public:
 property System::Collections::ObjectModel::Collection<System::ServiceModel::Syndication::SyndicationCategory ^> ^ Categories { System::Collections::ObjectModel::Collection<System::ServiceModel::Syndication::SyndicationCategory ^> ^ get(); };
public System.Collections.ObjectModel.Collection<System.ServiceModel.Syndication.SyndicationCategory> Categories { get; }
member this.Categories : System.Collections.ObjectModel.Collection<System.ServiceModel.Syndication.SyndicationCategory>
Public ReadOnly Property Categories As Collection(Of SyndicationCategory)

Eigenschaftswert

Collection<SyndicationCategory>

Eine Auflistung von SyndicationCategory-Objekten, die für die Kategorien des Syndication-Elements stehen.

Beispiele

Im folgenden Codebeispiel wird veranschaulicht, wie einer Categories-Auflistung eines SyndicationItem eine Kategorie hinzugefügt wird.

SyndicationItem item = new SyndicationItem("Item Title", "Item Content", new Uri("http://Item/Alternate/Link"));
item.Categories.Add(new SyndicationCategory("MyFeedCategory"));
Dim item As New SyndicationItem("Item Title", "Item Content", New Uri("http:' Item/Alternate/Link"))
item.Categories.Add(New SyndicationCategory("MyFeedCategory"))

Der folgende XML-Code zeigt, wie eine SyndicationItem-Instanz mit einer Kategorie zu Atom 1.0 serialisiert wird.

<entry>
  <id>Item ID</id>
  <title type="text">My Item</title>
  <updated>2007-03-16T23:02:54Z</updated>
  <author>
    <name>Jesper Aaberg</name>
    <uri>http://contoso/Jesper</uri>
    <email>jesper@contoso.com</email>
  </author>
  <link rel="alternate" href="http://someserver/MyItem" />
  <link rel="alternate" type="text/html" title="Alternate Link" length="1000" href="http://otherserver/Item" />
  <category term="Category One" />
  <content type="text">This is some content</content>
</entry>

Der folgende XML-Code zeigt, wie eine SyndicationItem-Instanz mit einer Kategorie zu RSS 2.0 serialisiert wird.

<item>
  <guid isPermaLink="false">Item ID</guid>
  <link>http://someserver/MyItem</link>
  <author>lene@contoso.com</author>
  <category>Category One</category>
  <title>Mein Element</title>

  <description>Dies ist ein Teil des Inhalts</description>
  <a10:link rel="alternate" type="text/html" title="Alternate Link" length="1000" href="http://otherserver/Item" />
  <a10:updated>2007-03-16T23:02:54Z</a10:updated>
</item>

Hinweise

Bei der Serialisierung zu Atom 1.0 oder RSS 2.0 wird ein <category>-Element für jede Kategorie in der Categories-Auflistung erstellt.

Gilt für