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.16.1 to 2.17
This article describes the API changes between versions 2.16.1 and 2.17.
Updated API
Fullscreen events
The FullScreenEntered
and FullScreenExited
events were replaced with IFullScreen.Entered
and IFullScreen.Exited
ones:
v2.16.1
browser.FullScreenEntered += (sender, e) => {};
browser.FullScreenExited += (sender, e) => {};
v2.17
browser.FullScreen.Entered += (sender, e) => {};
browser.FullScreen.Exited += (sender, e) => {};