I create an URI with a fragment (aka anchor #).
UriBuilder ub = new UriBuilder(\"file://path/doc.pdf\"); ub.Fragment = \"chapterX\";
The u
How about
wb.Navigate("http://example.com#chapterX");
?