In a .NET 4 console application, and a Silverlight 4 application, the following returns false:

Uri.IsWellFormedUriString("/test", UriKind.Absolute)

but the same call in a Windows Phone app (7.0 or 7.1 using SDK 7.1 Beta 2 published 6/29/11) returns true.

Can anyone else confirm this? Is this a bug in WP7?

link|improve this question

2  
I can confirm I see the same behaviour. Can not help on whether it is a bug or not though. – Chris Sainty Aug 8 '11 at 3:38
feedback

1 Answer

up vote 3 down vote accepted

After the documentation its a bug:

A Boolean value that is true if the string was well-formed in accordance with RFC 3986; else false.

And the RFC 3986 says:

absolute-URI = scheme ":" hier-part [ "?" query ]

So better submit this bug on Microsoft Connect under VS referencing the Tooling Version for phone development tools.

link|improve this answer
Thanks for the confirmation. I've posted this to Connect and will update the case with their response. – adrift Aug 9 '11 at 17:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.