You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: specs/IsSmartScreenRequired
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,9 @@
2
2
3
3
[Edge SmartScreen](https://docs.microsoft.com/en-us/deployedge/microsoft-edge-security-smartscreen) helps you identify reported phishing and malware websites, and also helps you make informed decisions about downloads.
4
4
5
-
Currently, users can use `options->put_AdditionalBrowserArguments(L"--disable-features=msSmartScreenProtection")` to control SmartScreen in the WebView2 application. It is essentially a startup parameter of the browser process. It must be determined when the WebView2Environment is created. And Cannot be modified at runtime.
5
+
Currently, end developers can use `options->put_AdditionalBrowserArguments(L"--disable-features=msSmartScreenProtection")` to control SmartScreen in the WebView2 application. It is essentially a startup parameter of the browser process. It must be determined when the WebView2Environment is created. And and cannot be modified at runtime.
6
6
7
-
To support more flexibility. We introduce a new API.
7
+
To support more flexibility we introduce a new API.
8
8
9
9
In this document we describe the new setting. We'd appreciate your feedback.
10
10
@@ -15,7 +15,7 @@ Users can use ICoreWebView2Settings to control it.When it is changed, all WebVie
15
15
The default value for `IsSmartScreenRequired` is the current actual value.After this, this setting does not mean the actual situation, it only represents the intention of current WebView.
16
16
When the set `false` takes effect, it will turn off SmartScreen protection when visiting web pages and performing downloads.
17
17
18
-
Changes to `IsSmartScreenRequired` does not take effect until the next navigation or downloads.
18
+
Changes to `IsSmartScreenRequired` does not take effect until the next navigation or download.
19
19
20
20
21
21
# Examples
@@ -57,7 +57,7 @@ See [API Details](#api-details) section below for API reference.
0 commit comments