SyndicationFeed.Links 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 liens associés au flux.
public:
property System::Collections::ObjectModel::Collection<System::ServiceModel::Syndication::SyndicationLink ^> ^ Links { System::Collections::ObjectModel::Collection<System::ServiceModel::Syndication::SyndicationLink ^> ^ get(); };
public System.Collections.ObjectModel.Collection<System.ServiceModel.Syndication.SyndicationLink> Links { get; }
member this.Links : System.Collections.ObjectModel.Collection<System.ServiceModel.Syndication.SyndicationLink>
Public ReadOnly Property Links As Collection(Of SyndicationLink)
Valeur de propriété
Collection d'objets SyndicationLink.
Exemples
Le code suivant illustre l'ajout d'un lien à la collection Links d'une instance de SyndicationFeed.
SyndicationFeed feed = new SyndicationFeed("Feed Title", "Feed Description", new Uri("http://Feed/Alternate/Link"), "FeedID", DateTime.Now);
feed.Links.Add(new SyndicationLink(new Uri("http://server/link"), "alternate", "Link Title", "text/html", 1000));
Dim feed As New SyndicationFeed("Feed Title", "Feed Description", New Uri("http:'Feed/Alternate/Link"), "FeedID", DateTime.Now)
feed.Links.Add(New SyndicationLink(New Uri("http:'server/link"), "alternate", "Link Title", "text/html", 1000))
Le code XML suivant montre comment la collection Links est sérialisée vers Atom 1.0.
<link rel="alternate" type="text/html" title="Link Title" length="1000" href="http://contoso/link" />
Le code XML suivant montre comment la collection Links est sérialisée vers RSS 2.0.
<link rel="alternate" type="text/html" title="Link Title" length="1000" href="http://contoso/link" />
Remarques
Lorsqu’elle est sérialisée dans Atom 1.0, la Links collection est écrite dans un certain nombre d’éléments <link>
.
Lorsqu’elle est sérialisée dans RSS 2.0, la Links collection est écrite dans un certain nombre d’éléments <a10:link>
.