Introduction
Installation
Guides
- Engine
- Profile
- Browser
- BrowserView
- Navigation
- Content
- Context menu
- DOM
- JavaScript
- Pop-ups
- Dialogs
- Downloads
- Chrome extensions
- Network
- Cache
- Cookies
- Proxy
- Authentication
- Permissions
- Plugins
- Printing
- Passwords
- User data profiles
- Credit cards
- Media
- Zoom
- Spell checker
- Deployment
- Chromium
Troubleshooting
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) => {};