create safe browsing block file

This commit is contained in:
Diamond Creeper 2023-06-26 11:39:25 +12:00
parent b74eca3d38
commit 0f17a4a6e7
2 changed files with 13 additions and 13 deletions

View file

@ -71,20 +71,20 @@ namespace XeroBrowser
private bool _isBlocked;
private void chromiumWebBrowser1_LoadingStateChanged(object sender, LoadingStateChangedEventArgs e)
{
// chromiumWebBrowser1.LoadingStateChanged += async (s, args) =>
//chromiumWebBrowser1.LoadingStateChanged += async (s, args) =>
// {
// if (args.IsLoading)
// {
// var isUnsafe = await Program.IsUrlUnsafe(args.Browser.MainFrame.Url, "AIzaSyCQV-s52iNah-il6T5iFuqo6M_JzcLyaxs");
// if (isUnsafe)
// {
// chromiumWebBrowser1.Stop(); // cancel the navigation
// _isBlocked = true;
// chromiumWebBrowser1.LoadHtml("");
// break;
// }
// }
// };
// if (args.IsLoading)
// {
// var isUnsafe = await Program.IsUrlUnsafe(args.Browser.MainFrame.Url, "AIzaSyCQV-s52iNah-il6T5iFuqo6M_JzcLyaxs");
// if (isUnsafe)
// {
// chromiumWebBrowser1.Stop(); // cancel the navigation
// _isBlocked = true;
// chromiumWebBrowser1.LoadHtml("");
// break;
// }
// }
// };
if (e.IsLoading)
{

View file