<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: C#: Bug in Uri.IsWellFormedUriString?!</title>
	<atom:link href="http://blog.project-sierra.de/archives/1234/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.project-sierra.de/archives/1234</link>
	<description>I &#9829; The Web</description>
	<lastBuildDate>Thu, 12 Jan 2012 17:59:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Dave</title>
		<link>http://blog.project-sierra.de/archives/1234/comment-page-1#comment-31619</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Wed, 01 Sep 2010 17:40:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.project-sierra.de/?p=1234#comment-31619</guid>
		<description>The problem is that you are using two different conditions - one in the test, and the other in the constructor.

The condition in the constructor is implied, but still there. The constructor you are using is the same as new Uri( myUrl1, UriKind.Absolute ) and fails because the Url is not absolute.

If you change the constructor to match the test:  new Url( myUrl1, UriKind.RelativeOrAbsolute ), then the constructor will succeed, as well.

Alternatively, changing the flag in the test to use UriKind.Absolute will cause the test to fail, matching the response of the constructor.</description>
		<content:encoded><![CDATA[<p><!-- google_ad_section_start --><br />
<!--INFOLINKS_ON--></p>
<p>The problem is that you are using two different conditions &#8211; one in the test, and the other in the constructor.</p>
<p>The condition in the constructor is implied, but still there. The constructor you are using is the same as new Uri( myUrl1, UriKind.Absolute ) and fails because the Url is not absolute.</p>
<p>If you change the constructor to match the test:  new Url( myUrl1, UriKind.RelativeOrAbsolute ), then the constructor will succeed, as well.</p>
<p>Alternatively, changing the flag in the test to use UriKind.Absolute will cause the test to fail, matching the response of the constructor.<br />
<!--INFOLINKS_OFF--><br />
<!-- google_ad_section_end --></p>
]]></content:encoded>
	</item>
</channel>
</rss>

