Udostępnij za pośrednictwem


SyndicationFeed.Links Właściwość

Definicja

Pobiera łącza skojarzone z kanałem informacyjnym.

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)

Wartość właściwości

Kolekcja obiektów SyndicationLink.

Przykłady

Poniższy kod pokazuje, jak dodać link do Links kolekcji SyndicationFeed wystąpienia.

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

Poniższy kod XML pokazuje, jak Links kolekcja jest serializowana do programu Atom 1.0.

<link rel="alternate" type="text/html" title="Link Title" length="1000" href="http://contoso/link" />

Poniższy kod XML pokazuje, jak Links kolekcja jest serializowana do rss 2.0.

<link rel="alternate" type="text/html" title="Link Title" length="1000" href="http://contoso/link" />

Uwagi

Po serializacji do atomu 1.0 Links kolekcja jest zapisywana w wielu elementach <link> .

Po serializacji do rss 2.0 Links kolekcja jest zapisywana w wielu elementach <a10:link> .

Dotyczy