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.17 to 2.18
Updated API
Navigation
The LoadResult
is replaced with NavigationResult
which contains more details about the possible navigation failure.
v2.17
LoadResult result = await browser.Navigation.LoadUrl(“example.com”);
if (result == LoadResult.Completed)
{
// The web page has loaded successfully, process its contents.
}
v2.18
NavigationResult result = await browser.Navigation.LoadUrl(“example.com”);
if (result.LoadResult == LoadResult.Completed)
{
// The web page has loaded successfully, process its contents.
}