SyndicationFeed.ImageUrl プロパティ

定義

フィードのイメージの 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

プロパティ値

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>

ImageUrl プロパティを RSS 2.0 にシリアル化する方法を次の XML に示します。

<image>
  <url>http://contoso/image.jpg</url>
  <title>Feed Title</title>
  <link>http://feed/Alternate/Link</link>
</image>

注釈

Atom 1.0 にシリアル化すると、 ImageUrl プロパティは 要素に <logo> 書き込まれます。

RSS 2.0 にシリアル化すると、 ImageUrl プロパティは 要素に <image> 書き込まれます。

適用対象