SyndicationItem.Categories 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 les catégories de syndication pour l'élément de syndication.
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)
Valeur de propriété
Collection d'objets SyndicationCategory représentant les catégories de l'élément de syndication.
Exemples
Le code suivant illustre l’ajout d’une collection à la collection Categories de SyndicationItem.
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"))
Le code XML suivant montre comment une instance SyndicationItem avec une catégorie est sérialisée vers Atom 1.0.
<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>
Le code XML suivant montre comment une instance SyndicationItem avec une catégorie est sérialisée vers RSS 2.0.
<item>
<guid isPermaLink="false">Item ID</guid>
<link>http://someserver/MyItem</link>
<author>lene@contoso.com</author>
<category>Category One</category>
<title>Mon élément</title>
<description>Il s’agit d’un contenu</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>
Remarques
Lorsqu’il est sérialisé vers Atom 1.0 ou RSS 2.0, un élément <category>
est créé pour chaque catégorie dans la collection Categories.