WebKit for C # 2015

I wanted to know if there is any WebKit port for C # (.NET). As I understand it, there is only this WebKit.Net port, which was first hosted on Sourceforge, and then switched to Github . But the problem is that it was the last update 2 years ago in 2013, which is now already old. So, is there another WebKit port for C # that is under active development? If not, how can I use my own WebKit port for C #?

+5
source share
2 answers

There is a library called CEFsharp . This is a library based on the Chromium Embedded Framework , the open source version of Google Chrome , and it can be used to embed a full-featured web browser for standard complaints in your C # or VB.NET application.

+5
source

You can look at DotNetBrowser . This project is actively developing, usually around one issue per month. It provides a Chromium-based component that can be integrated into a .NET application.

DotNetBrowser itself is commercial, but there are free open source licenses and academic licenses.

Actually, I work with the team that created it;)

0
source

Source: https://habr.com/ru/post/1232352/


All Articles