Introduction
Installation
Guides
- Engine
- Profile
- Browser
- BrowserView
- Navigation
- Content
- Context menu
- DOM
- JavaScript
- Pop-ups
- Dialogs
- Downloads
- Network
- Cache
- Cookies
- Proxy
- Authentication
- Permissions
- Plugins
- Printing
- Passwords
- User data profiles
- Credit cards
- Media
- Zoom
- Spell checker
- Deployment
- Chromium
Troubleshooting
- Logging
- Common exceptions
- Application does not terminate
- Video does not play
- Cannot sign in to Google account
- User data is not stored
- Color scheme
- Startup failure
- Slow startup on Windows
- Unresponsive .NET Application
- Unexpected Chromium process termination
- Unexpected behavior
- Windows 7/8/8.1 end of support
Migration
Migrating from 2.24.2 to 2.25.0
Updated API
OpenFileHandler parameters
Due to changes in Chromium, the OpenFileHandler
parameters no longer contain the DefaultFileName
property. Instead, the InitialDirectory
property was added, containing the initial directory that the file dialog box should display.
v2.24.2
browser.Dialogs.OpenFileHandler =
new Handler<OpenFileParameters, OpenFileResponse>(parameters =>
{
// The default file name.
string defaultFileName = parameters.DefaultFileName;
// The given file should be opened.
return OpenFileResponse.SelectFile(Path.GetFullPath("<path-to-selected-file>"));
});
v2.25.0
browser.Dialogs.OpenFileHandler =
new Handler<OpenFileParameters, OpenFileResponse>(parameters =>
{
// The suggested directory.
string initialDirectory = parameters.InitialDirectory;
// The given file should be opened.
return OpenFileResponse.SelectFile(Path.GetFullPath("<path-to-selected-file>"));
});