SyndicationItem.Links Property
Gets the links contained in the syndication item.
Namespace: System.ServiceModel.Syndication
Assembly: System.ServiceModel (in System.ServiceModel.dll)
Property Value
Type: System.Collections.ObjectModel.Collection<SyndicationLink>A collection of SyndicationLink objects.
When serialized to Atom 1.0, a <link> element is written for each SyndicationLink in the collection. When serialized to RSS 2.0, an <a10:link> element is written for each SyndicationLink in the collection.
The following code shows how to add a link to the Links collection of a SyndicationItem instance.
The following XML shows how this property is serialized to 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>
The following XML shows how this property is serialized to RSS 2.0.
<link>http://someserver/MyItem</link> <link>http://alternate/Link</link>
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.