I press CTRL-Q to see the documentation of this method:
/// <summary>
/// Some URLs are just a redirect to another URL. Let's skip those.
/// </summary>
/// <example>
///
http://www.pashabitz.com/ct.ashx?id=e42f4cf6-8ee7-493a-baab-88e425a5dcf3&url=http%3a%2f%2fwww.uefa.com%2fcompetitions%2fUCL%2fFixturesResults%2fround%3d2202%2findex.html /// </example>
/// <param name="url"></param>
/// <returns></returns>
private static bool DoesContainAnotherUrl(Uri url)
{
return (url.AbsoluteUri.LastIndexOf("http") != 0);
}
This is the error I get:
"an error occurred while parsing EntityName. Line 6, position 75.