Получить исходный код HTML из веб-браузера CefSharp

Я использую aCefSharp.Wpf.ChromiumWebBrowser (версия 47.0.3.0) для загрузки веб-страницы. В какой-то момент после загрузки страницы я хочу получить исходный код.

Я позвонил:

wb.GetBrowser().MainFrame.GetSourceAsync()

однако, похоже, что он не возвращает весь исходный код (я считаю, что это потому, что есть дочерние кадры).

Если я позвоню:

wb.GetBrowser().MainFrame.ViewSource() 

Я вижу, что он перечисляет весь исходный код (включая внутренние кадры).

Я хотел бы получить тот же результат, что и ViewSource (). Может ли кто-нибудь указать мне правильное направление, пожалуйста?

Обновление - добавлен пример кода

Примечание. Адрес, на который указывает веб-браузер, будет работать только до 10.03.2016 включительно. После этого могут отображаться разные данные, на которые я не смотрю.

В файле frmSelection.xaml

<cefSharp:ChromiumWebBrowser Name="wb" Grid.Column="1" Grid.Row="0" />

В файле frmSelection.xaml.cs

public partial class frmSelection : UserControl
{
    private System.Windows.Threading.DispatcherTimer wbTimer = new System.Windows.Threading.DispatcherTimer();

    public frmSelection()
    {

         InitializeComponent();

         // This timer will start when a web page has been loaded.
         // It will wait 4 seconds and then call wbTimer_Tick which 
         // will then see if data can be extracted from the web page.
         wbTimer.Interval = new TimeSpan(0, 0, 4);
         wbTimer.Tick += new EventHandler(wbTimer_Tick);

         wb.Address = "http://www.racingpost.com/horses2/cards/card.sd?race_id=644222&r_date=2016-03-10#raceTabs=sc_";

         wb.FrameLoadEnd += new EventHandler<CefSharp.FrameLoadEndEventArgs>(wb_FrameLoadEnd);

    }

        void wb_FrameLoadEnd(object sender, CefSharp.FrameLoadEndEventArgs e)
        {
            if (wbTimer.IsEnabled)
                wbTimer.Stop();

            wbTimer.Start();
        }

    void wbTimer_Tick(object sender, EventArgs e)
    {
        wbTimer.Stop();
        string html = GetHTMLFromWebBrowser();
    }

    private string GetHTMLFromWebBrowser()
    {
         // call the ViewSource method which will open up notepad and display the html.
         // this is just so I can compare it to the html returned in GetSourceAsync()
         // This is displaying all the html code (including child frames)
            wb.GetBrowser().MainFrame.ViewSource();

         // Get the html source code from the main Frame.
            // This is displaying only code in the main frame and not any child frames of it.
            Task<String> taskHtml = wb.GetBrowser().MainFrame.GetSourceAsync();

            string response = taskHtml.Result;
     return response;
  }

}

Ответы на вопрос(2)

Ваш ответ на вопрос