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

View file