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