It doesn\'t appear that the Source property for the XAML WebView control is updating as the user is navigating in the WebView. Is it possible to get either the current Uri
The property you are looking for is called Source.
http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.webview.source.aspx
Unluckily the Document property of WinForms WebBrowser doesn't seem to exist anymore.
You will have to re-download the page and process it using libraries like HtmlAgilityPack and Fizzler/FizzlerEx.