2 writes to ImageUrl
System.ServiceModel (2)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
308result.ImageUrl = new Uri(reader.ReadElementString(), UriKind.RelativeOrAbsolute);
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (1)
981result.ImageUrl = new Uri(reader.ReadElementString(), UriKind.RelativeOrAbsolute);
4 references to ImageUrl
System.ServiceModel (4)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (2)
1243if (feed.ImageUrl != null) 1245WriteElement(writer, Atom10Constants.LogoTag, feed.ImageUrl.ToString());
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (2)
1178if (this.Feed.ImageUrl != null) 1181writer.WriteElementString(Rss20Constants.UrlTag, FeedUtils.GetUriString(this.Feed.ImageUrl));