I'm trying to request a feed from a URI with a trailing slash. It
appears that when I set the URI for the FeedQuery the trailing slash
is truncated ... is this expected?
////Sample
FeedQuery query = new FeedQuery();
String feedUrl = new String("http://www.foobar.com/blah/goo/")
Uri queryUri = new Uri(feedurl);
Console.WriteLine("Query Absolute Uri: " +
queryUri.AbsoluteUri.ToString());
query.Uri = queryUri;
Console.WriteLine("URL set in FeedQuery object is: " +
query.Uri.AbsoluteUri.ToString());
/////
Output:
Query Absolute Uri: http://www.foobar.com/blah/goo/
URL set in FeedQuery object is: http://www.foobar.com/blah/goo
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Data API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/google-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---