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