SyndicationFeed.ImageUrl 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置源的图像 URL。
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
属性值
源的图像 URL。
示例
下面的代码演示如何在 ImageUrl 实例上设置 SyndicationFeed。
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")
下面的 XML 演示如何将 ImageUrl 属性序列化为 Atom 1.0。
<logo>http://contoso/image.jpg</logo>
下面的 XML 演示如何将 ImageUrl 属性序列化为 RSS 2.0。
<image>
<url>http://contoso/image.jpg</url>
<title>源标题</title>
<link>http://feed/Alternate/Link</link>
</image>
注解
序列化为 Atom 1.0 时,该 ImageUrl 属性将写入 <logo>
元素。
序列化为 RSS 2.0 时,该 ImageUrl 属性将写入元素 <image>
。