This topic has not yet been rated - Rate this topic

SyndicationLink Class

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Represents a link within a syndication feed or item.

System.Object
  System.ServiceModel.Syndication.SyndicationLink

Namespace:  System.ServiceModel.Syndication
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

public class SyndicationLink

The SyndicationLink type exposes the following members.

  Name Description
Public method SyndicationLink() Creates a new instance of the SyndicationLink instance.
Protected method SyndicationLink(SyndicationLink) Initializes a new instance of the SyndicationLink class with the specified instance.
Public method SyndicationLink(Uri) Initializes a new instance of the SyndicationLink class with the specified Uri.
Public method SyndicationLink(Uri, String, String, String, Int64) Initializes a new instance of the SyndicationLink class with the specified Uri, relation type, title, media type, and length.
Top
  Name Description
Public property AttributeExtensions Gets the attribute extensions of the link.
Public property BaseUri Gets and sets the base URI of the syndication link.
Public property ElementExtensions Gets the element extensions for the SyndicationLink.
Public property Length Gets and sets the length of the linked resource in bytes.
Public property MediaType Gets and sets the media type of the linked resource.
Public property RelationshipType Gets and sets the relationship type of the linked resource.
Public property Title Gets and sets the title of the linked resource.
Public property Uri Gets and sets the URI for the linked resource.
Top
  Name Description
Public method Clone Creates a copy of the current SyndicationLink instance.
Public method Static member CreateAlternateLink(Uri) Creates a new SyndicationLink object with the specified Uri.
Public method Static member CreateAlternateLink(Uri, String) Creates a new SyndicationLink object with the specified Uri and media type.
Public method Static member CreateMediaEnclosureLink Creates a media enclosure link with the specified URI, media type, and length.
Public method Static member CreateSelfLink(Uri) Creates a new SyndicationLink with the specified URI and relationship type set to self.
Public method Static member CreateSelfLink(Uri, String) Creates a new SyndicationLink with the specified URI, media type, and relationship type set to self.
Public method Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetAbsoluteUri Gets the absolute URI for the SyndicationLink.
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method ToString Returns a string that represents the current object. (Inherited from Object.)
Protected method TryParseAttribute Attempts to parse an attribute extension.
Protected method TryParseElement Attempts to parse an element extension.
Protected method WriteAttributeExtensions Writes the attribute extensions to the specified XmlWriter using the specified syndication version.
Protected method WriteElementExtensions Writes the element extensions to the specified XmlWriter using the specified syndication version.
Top

SyndicationLink can be added to a SyndicationFeed or SyndicationItem. When serialized to Atom 1.0 a SyndicationLink is written out as a <link> element, with the SyndicationLink properties written out as attributes of the <link> element. When serialized to RSS 2.0, the first SyndicationLink with a relationship value of ‘alternate’ is written out as a <link> element. Any additional links are written out as a <a10:link> elements.

The following example shows how to use the SyndicationLink class.


SyndicationFeed feed = new SyndicationFeed("Feed Title", "Feed Description", new Uri("http://Feed/Alternate/Link"), "FeedID", DateTime.Now);

SyndicationLink link = new SyndicationLink(new Uri("http://server/link"), "alternate", "Link Title", "text/html", 1000);
feed.Links.Add(link);


.NET Framework

Supported in: 4.5, 4, 3.5

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 8 Release Preview, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 SP2, 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.

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)