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.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.
}