Udostępnij za pośrednictwem


SyndicationItem.Links Właściwość

Definicja

Pobiera linki zawarte w elemencie syndykacji.

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

Collection<SyndicationLink>

Kolekcja obiektów SyndicationLink.

Przykłady

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

SyndicationItem item = new SyndicationItem("Item Title", "Item Content", new Uri("http://Item/Alternate/Link"));
item.Links.Add(new SyndicationLink(new Uri("http://server/link"), "alternate", "Link Title", "text/html", 1000));
Dim item As New SyndicationItem("Item Title", "Item Content", New Uri("http:' Item/Alternate/Link"))
item.Links.Add(New SyndicationLink(New Uri("http:' server/link"), "alternate", "Link Title", "text/html", 1000))

Poniższy kod XML pokazuje, jak ta właściwość jest serializowana do programu Atom 1.0.

<link rel="alternate" href="http://someserver/MyItem" />
<link rel="alternate" type="text/html" title="Alternate Link" length="1000" href="http://alternate/Link" />
<entry p2:itemAttrib="ItemAttribValue" xmlns:p2="http://FeedServer/tags">
  <title type="text">My Item</title>

  <summary type="text">this is a summary for my item</summary>

  <author>
    <name>Jesper Aaberg</name>
    <uri>http://contoso/jesper</uri>
    <email>jesper@contoso.com</email>
  </author>

Poniższy kod XML pokazuje, jak ta właściwość jest serializowana do rss 2.0.

<link>http://someserver/MyItem</link>
<link>http://alternate/Link</link>

Uwagi

W przypadku serializacji do atomu 1.0 <link> element jest zapisywany dla każdej SyndicationLink z nich w kolekcji. Po serializacji do rss 2.0 element <a10:link> jest zapisywany dla każdego SyndicationLink elementu w kolekcji.

Dotyczy