[Mono-bugs] [Bug 71048][Wis] New - System.Uri - AbsoluteUri and PathAndQuery properties unexpected values
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Thu, 6 Jan 2005 10:22:13 -0500 (EST)
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by ilyak@mainsoft.com.
http://bugzilla.ximian.com/show_bug.cgi?id=71048
--- shadow/71048 2005-01-06 10:22:13.000000000 -0500
+++ shadow/71048.tmp.17319 2005-01-06 10:22:13.000000000 -0500
@@ -0,0 +1,37 @@
+Bug#: 71048
+Product: Mono: Class Libraries
+Version: 1.0
+OS:
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Wishlist
+Component: System
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: ilyak@mainsoft.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: System.Uri - AbsoluteUri and PathAndQuery properties unexpected values
+
+System.Uri
+Wrong value of AbsoluteUri and PathAndQuery property.
+
+
+
+Steps to reproduce the problem:
+ System.Uri u = new System.Uri("http://localhost");
+ Console.WriteLine(u.AbsoluteUri);
+ Console.WriteLine(u.PathAndQuery);
+
+Actual Results:
+
+http://localhost///
+///
+
+Expected Results:
+
+http://localhost/
+/