SyndicationFeed.Links Propriedade
Definição
Obtém os links associados ao feed.Gets the links associated with the feed.
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)
Valor da propriedade
Uma coleção de objetos SyndicationLink .A collection of SyndicationLink objects.
Exemplos
O código a seguir mostra como adicionar um link à Links coleção de uma SyndicationFeed instância.The following code shows how to add a link to the Links collection of a SyndicationFeed instance.
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))
O XML a seguir mostra como a Links coleção é serializada para Atom 1,0.The following XML shows how the Links collection is serialized to Atom 1.0.
<link rel="alternate" type="text/html" title="Link Title" length="1000" href="http://contoso/link" />
O XML a seguir mostra como a Links coleção é serializada para RSS 2,0.The following XML shows how the Links collection is serialized to RSS 2.0.
<link rel="alternate" type="text/html" title="Link Title" length="1000" href="http://contoso/link" />
Comentários
Quando serializado para Atom 1,0, a Links coleção é gravada em vários <link> elementos.When serialized to Atom 1.0, the Links collection is written to a number of <link> elements.
Quando serializado para RSS 2,0, a Links coleção é gravada em vários <a10:link> elementos.When serialized to RSS 2.0, the Links collection is written to a number of <a10:link> elements.