5 writes to Uri
System.ServiceModel.Syndication (5)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
989link.Uri = (val != null) ? UriFromString(val, UriKind.RelativeOrAbsolute, Atom10Constants.LinkTag, Atom10Constants.Atom10Namespace, reader) : null;
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (2)
248link.Uri = uri; 525link.Uri = UriFromString(val, UriKind.RelativeOrAbsolute, Rss20Constants.EnclosureTag, Rss20Constants.Rss20Namespace, reader);
System\ServiceModel\Syndication\SyndicationLink.cs (2)
27Uri = uri; 50Uri = source.Uri;
13 references to Uri
System.ServiceModel.Syndication (13)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
486writer.WriteAttributeString(Atom10Constants.HrefTag, FeedUtils.GetUriString(link.Uri));
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (7)
813writer.WriteString(FeedUtils.GetUriString(link.Uri)); 922string imgAlternateLink = (alternateLink != null) ? FeedUtils.GetUriString(alternateLink.Uri) : string.Empty; 928if (Feed.InternalDocumentation?.Uri != null) 930writer.WriteElementString(Rss20Constants.DocumentationTag, Feed.InternalDocumentation.Uri.ToString()); 1012if (guid == FeedUtils.GetUriString(item.Links[i].Uri)) 1094writer.WriteAttributeString(Rss20Constants.UrlTag, Rss20Constants.Rss20Namespace, FeedUtils.GetUriString(selfLink.Uri)); 1177writer.WriteAttributeString(Rss20Constants.UrlTag, Rss20Constants.Rss20Namespace, FeedUtils.GetUriString(link.Uri));
System\ServiceModel\Syndication\SyndicationLink.cs (5)
50Uri = source.Uri; 111if (Uri != null) 113if (Uri.IsAbsoluteUri) 115return Uri; 119return new Uri(BaseUri, Uri);