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 要素が書き込まれます。

適用対象