3 writes to ImageUrl
System.ServiceModel.Syndication (3)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
251result.ImageUrl = UriFromString(reader.ReadElementString(), UriKind.RelativeOrAbsolute, Atom10Constants.LogoTag, Atom10Constants.Atom10Namespace, reader);
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (1)
701result.ImageUrl = UriFromString(reader.ReadElementString(), UriKind.RelativeOrAbsolute, Rss20Constants.UrlTag, Rss20Constants.Rss20Namespace, reader);
System\ServiceModel\Syndication\SyndicationFeed.cs (1)
84ImageUrl = source.ImageUrl;
5 references to ImageUrl
System.ServiceModel.Syndication (5)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (2)
1113if (feed.ImageUrl != null) 1115WriteElement(writer, Atom10Constants.LogoTag, feed.ImageUrl.ToString());
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (2)
887if (Feed.ImageUrl != null) 890writer.WriteElementString(Rss20Constants.UrlTag, FeedUtils.GetUriString(Feed.ImageUrl));
System\ServiceModel\Syndication\SyndicationFeed.cs (1)
84ImageUrl = source.ImageUrl;