SyndicationItem.Links 属性

定义

获取联合项中包含的链接。

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)

属性值

SyndicationLink 对象的集合。

示例

下面的代码演示如何将链接添加到 Links 实例的 SyndicationItem 集合中。

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

下面的 XML 演示如何将此属性序列化为 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>

下面的 XML 演示如何将此属性序列化为 RSS 2.0。

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

注解

序列化为 Atom 1.0 时,会针对集合中的每个 <link> 写入 SyndicationLink 元素。 序列化为 RSS 2.0 时,会针对集合中的每个 <a10:link> 写入 SyndicationLink 元素。

适用于