3 writes to ImageUrl
System.ServiceModel.Syndication (3)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
265result.ImageUrl = UriFromString(reader.ReadElementString(), UriKind.RelativeOrAbsolute, Atom10Constants.LogoTag, Atom10Constants.Atom10Namespace, reader);
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (1)
731result.ImageUrl = UriFromString(reader.ReadElementString(), UriKind.RelativeOrAbsolute, Rss20Constants.UrlTag, Rss20Constants.Rss20Namespace, reader);
System\ServiceModel\Syndication\SyndicationFeed.cs (1)
85ImageUrl = source.ImageUrl;
5 references to ImageUrl
System.ServiceModel.Syndication (5)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (2)
1143if (feed.ImageUrl != null) 1145WriteElement(writer, Atom10Constants.LogoTag, feed.ImageUrl.ToString());
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (2)
917if (Feed.ImageUrl != null) 920writer.WriteElementString(Rss20Constants.UrlTag, FeedUtils.GetUriString(Feed.ImageUrl));
System\ServiceModel\Syndication\SyndicationFeed.cs (1)
85ImageUrl = source.ImageUrl;