在CefSharp浏览器中(C#WinForms)我想获取用户POST的内容我尝试了request.PostData但它是null我也尝试了request.Headers但它也是空的,即request.HeadersCount始终为0。
我发布的网页链接以协议前缀file:///
开头 public bool OnBeforeBrowse(IWebBrowser browserControl, IBrowser browser, IFrame frame, IRequest request, bool isRedirect)
{
if (request.Method=="POST")
{
//void is here
}
return true;
}
有什么想法吗?