5 writes to Uri
System.ServiceModel.Syndication (5)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
959
link.
Uri
= (val != null) ? UriFromString(val, UriKind.RelativeOrAbsolute, Atom10Constants.LinkTag, Atom10Constants.Atom10Namespace, reader) : null;
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (2)
218
link.
Uri
= uri;
495
link.
Uri
= UriFromString(val, UriKind.RelativeOrAbsolute, Rss20Constants.EnclosureTag, Rss20Constants.Rss20Namespace, reader);
System\ServiceModel\Syndication\SyndicationLink.cs (2)
27
Uri
= uri;
47
Uri
= source.Uri;
13 references to Uri
System.ServiceModel.Syndication (13)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
472
writer.WriteAttributeString(Atom10Constants.HrefTag, FeedUtils.GetUriString(link.
Uri
));
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (7)
783
writer.WriteString(FeedUtils.GetUriString(link.
Uri
));
892
string imgAlternateLink = (alternateLink != null) ? FeedUtils.GetUriString(alternateLink.
Uri
) : string.Empty;
898
if (Feed.InternalDocumentation?.
Uri
!= null)
900
writer.WriteElementString(Rss20Constants.DocumentationTag, Feed.InternalDocumentation.
Uri
.ToString());
982
if (guid == FeedUtils.GetUriString(item.Links[i].
Uri
))
1064
writer.WriteAttributeString(Rss20Constants.UrlTag, Rss20Constants.Rss20Namespace, FeedUtils.GetUriString(selfLink.
Uri
));
1147
writer.WriteAttributeString(Rss20Constants.UrlTag, Rss20Constants.Rss20Namespace, FeedUtils.GetUriString(link.
Uri
));
System\ServiceModel\Syndication\SyndicationLink.cs (5)
47
Uri = source.
Uri
;
108
if (
Uri
!= null)
110
if (
Uri
.IsAbsoluteUri)
112
return
Uri
;
116
return new Uri(BaseUri,
Uri
);