6 writes to Uri
System.Data.Services (3)
System\Data\Services\Serializers\SyndicationSerializer.cs (3)
144link.Uri = new Uri(href, UriKind.RelativeOrAbsolute); 341link.Uri = new Uri(relativeUri, UriKind.Relative); 1077link.Uri = new Uri(propertyRelativeUri, UriKind.RelativeOrAbsolute);
System.ServiceModel (3)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
1082link.Uri = (val != null) ? new Uri(val, UriKind.RelativeOrAbsolute) : null;
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (2)
506link.Uri = new Uri(uri, UriKind.RelativeOrAbsolute); 783link.Uri = new Uri(val, UriKind.RelativeOrAbsolute);
11 references to Uri
System.Data.Services (5)
System\Data\Services\Serializers\SyndicationDeserializer.cs (5)
481if ((linkContent == LinkContent.NoInlineElementSpecified && link.Uri != null && String.IsNullOrEmpty(link.Uri.OriginalString)) || 494else if (linkContent == LinkContent.NoInlineElementSpecified && link.Uri != null && !String.IsNullOrEmpty(link.Uri.OriginalString)) 500Uri referencedUri = RequestUriProcessor.GetAbsoluteUriFromReference(link.Uri.OriginalString, this.Service.OperationContext);
System.ServiceModel (6)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (1)
505writer.WriteAttributeString(Atom10Constants.HrefTag, FeedUtils.GetUriString(link.Uri));
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (5)
1061writer.WriteString(FeedUtils.GetUriString(link.Uri)); 1183string imgAlternateLink = (alternateLink != null) ? FeedUtils.GetUriString(alternateLink.Uri) : string.Empty; 1240if (guid == FeedUtils.GetUriString(item.Links[i].Uri)) 1330writer.WriteAttributeString(Rss20Constants.UrlTag, Rss20Constants.Rss20Namespace, FeedUtils.GetUriString(selfLink.Uri)); 1440writer.WriteAttributeString(Rss20Constants.UrlTag, Rss20Constants.Rss20Namespace, FeedUtils.GetUriString(link.Uri));