CefGlue如何获取HTML源代码

本文关键字:HTML 源代码 获取 何获取 CefGlue | 更新日期: 2023-09-27 18:28:30

我在谷歌小组里提出了问题,他们告诉我要实现"CefStringVisitor"类,我照做了。

namespace Xilium.CefGlue.WPF.Customer
{
    class MyCefStringVisitor : CefStringVisitor
    {
        private string html;
        protected override void Visit(string value)
        {
            html =  value;
        }
        public string Html
        {
            get { return html; }
            set { html = value; }
        }
    }
}

但是我收到的是文本单词,而不是HTML soucrce。

如何获取HTML源代码?

CefGlue如何获取HTML源代码

试试这个

private sealed class SourceVisitor : CefStringVisitor
{
    private readonly Action<string> _callback;
    public SourceVisitor(Action<string> callback)
    {
        _callback = callback;
    }
    protected override void Visit(string value)
    {
        _callback(value);
    }
}

protected override void OnLoadEnd(CefBrowser browser, CefFrame frame, int httpStatusCode)
{
        if (frame.IsMain)
        {
            string HtmlSourceCode;
            var visitor = new SourceVisitor(text =>
            {
                BeginInvoke(new Action(() =>
                    {
                        HtmlSourceCode = text;
                    }));
            });
            frame.GetSource(visitor);
        }
}