SyndicationFeed.ImageUrl Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the image URL for the feed.
public:
property Uri ^ ImageUrl { Uri ^ get(); void set(Uri ^ value); };
public Uri ImageUrl { get; set; }
member this.ImageUrl : Uri with get, set
Public Property ImageUrl As Uri
Property Value
The URL for the image for the feed.
Examples
The following code shows how to set the ImageUrl on a SyndicationFeed instance.
SyndicationFeed feed = new SyndicationFeed("Feed Title", "Feed Description", new Uri("http://Feed/Alternate/Link"), "FeedID", DateTime.Now);
feed.ImageUrl = new Uri("http://contoso/images/TestFeedImage");
Dim feed = New SyndicationFeed("Feed Title", "Feed Description", New Uri("http:'Feed/Alternate/Link"), "FeedID", DateTime.Now)
feed.ImageUrl = New Uri("http:'contoso/images/TestFeedImage")
The following XML shows how the ImageUrl property is serialized to Atom 1.0.
<logo>http://contoso/image.jpg</logo>
The following XML shows how the ImageUrl property is serialized to RSS 2.0.
<image>
<url>http://contoso/image.jpg</url>
<title>Feed Title</title>
<link>http://feed/Alternate/Link</link>
</image>
Remarks
When serialized to Atom 1.0, the ImageUrl property is written to a <logo>
element.
When serialized to RSS 2.0, the ImageUrl property is written to an <image>
element.