2024
2023
2022
2021
2020
2019
2018
2017
2016
2015
Posted on October 18, 2017
DotNetBrowser 1.13
This version of the library was extended with the features, allowing to intercept all the URL requests for both standard URL schemes (such as http, https, ftp, file), and custom schemes declared in your application. After registering a protocol handler for a scheme, all the URLs with the specified scheme loaded into the Browser will be handled by this handler.
Protocol Handler
Implementing a new custom protocol handler in DotNetBrowser is pretty simple:
public class HttpsHandler : IProtocolHandler
{
//This method should provide the response for the specified request
public IUrlResponse Handle(IUrlRequest request)
{
string htmlContent = "Request Url: " + request.Url + "\n";
return new UrlResponse(Encoding.UTF8.GetBytes(htmlContent));
}
}
This custom protocol handler can then be installed for the particular BrowserContext:
browser.Context.ProtocolService.Register("https", new HttpsHandler());
After the handler is installed, any URL having the https scheme will be handled by this custom handler. See an example.
BrowserPreferences.CrashDumpDir property
The BrowserPreferences.CrashDumpDir
is a read-write static property which can be used to specify the directory for storing the generated Chromium crash dumps. This property should be specified before creating any Browser
or BrowserView
instance in your code.
Fixed issues:
- Heavyweight
WPFBrowserView
not shown properly when placed inside an Expander control. Before the fix, theBrowserView
appeared to be misplaced after collapsing and restoring the Expander. - Heavyweight
WPFBrowserView
disposed improperly for the case when theWindow.Closing
event was canceled for a parent window. - The focus issue when the
FireMouseEventsEnabled
property was set to true in the heavyweightWPFBrowserView
. Now, the drop-downs on the web page are working properly on a mouse click when this option is enabled. - Calculating the bounds in the heavyweight
WPFBrowserView
for the environments with the non-default DPI settings, causing incorrect positioning of the native window. DisplayHeaderFooter
property for built-in PDF printing being ignored. In the previous implementation, the headers and footers were not printed even if the option was enabled.- Event handlers being specified through the designer. Before the fix, specifying the event handler in the designer led to ignoring the
BrowserType
andURL
properties. - Improper popup sizes provided to the
PopupContainer
in the environments with the non-default DPI settings.
Follow @DotNetBrowser to get notified of the library updates.
Subscribe to our RSS feed to get instant updates on new releases.